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:0261
Vulnerability from csaf_redhat - Published: 2026-01-07 18:34 - Updated: 2026-06-14 15:09A 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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64 | — |
Workaround
|
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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64 | — |
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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7.4 has been released.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat Developer Hub (RHDH) is Red Hat\u0027s enterprise-grade, self-managed, customizable developer portal based on Backstage.io. RHDH is supported on OpenShift and other major Kubernetes clusters (AKS, EKS, GKE). The core features of RHDH include a single pane of glass, a centralized software catalog, self-service via golden path templates, and Tech Docs. RHDH is extensible by plugins.",
"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:0261",
"url": "https://access.redhat.com/errata/RHSA-2026:0261"
},
{
"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-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/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://catalog.redhat.com/search?gs\u0026searchType=containers\u0026q=rhdh",
"url": "https://catalog.redhat.com/search?gs\u0026searchType=containers\u0026q=rhdh"
},
{
"category": "external",
"summary": "https://developers.redhat.com/rhdh/overview",
"url": "https://developers.redhat.com/rhdh/overview"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_developer_hub",
"url": "https://docs.redhat.com/en/documentation/red_hat_developer_hub"
},
{
"category": "external",
"summary": "https://issues.redhat.com/browse/RHIDP-11024",
"url": "https://issues.redhat.com/browse/RHIDP-11024"
},
{
"category": "external",
"summary": "https://issues.redhat.com/browse/RHIDP-11112",
"url": "https://issues.redhat.com/browse/RHIDP-11112"
},
{
"category": "external",
"summary": "https://issues.redhat.com/browse/RHIDP-11115",
"url": "https://issues.redhat.com/browse/RHIDP-11115"
},
{
"category": "external",
"summary": "https://issues.redhat.com/browse/RHIDP-11117",
"url": "https://issues.redhat.com/browse/RHIDP-11117"
},
{
"category": "external",
"summary": "https://issues.redhat.com/browse/RHIDP-11241",
"url": "https://issues.redhat.com/browse/RHIDP-11241"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_0261.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Developer Hub 1.7.4 release.",
"tracking": {
"current_release_date": "2026-06-14T15:09:07+00:00",
"generator": {
"date": "2026-06-14T15:09:07+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:0261",
"initial_release_date": "2026-01-07T18:34:52+00:00",
"revision_history": [
{
"date": "2026-01-07T18:34:52+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-07T18:34:55+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:09:07+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Developer Hub 1.7",
"product": {
"name": "Red Hat Developer Hub 1.7",
"product_id": "Red Hat Developer Hub 1.7",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhdh:1.7::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Developer Hub"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"product": {
"name": "registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"product_id": "registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhdh-hub-rhel9@sha256%3A29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2?arch=amd64\u0026repository_url=registry.redhat.io/rhdh\u0026tag=1.7.4-1767715042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64",
"product": {
"name": "registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64",
"product_id": "registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhdh-rhel9-operator@sha256%3A91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23?arch=amd64\u0026repository_url=registry.redhat.io/rhdh\u0026tag=1.7.4-1767620808"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"product": {
"name": "registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"product_id": "registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhdh-operator-bundle@sha256%3Ae191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b?arch=amd64\u0026repository_url=registry.redhat.io/rhdh\u0026tag=1.7.4-1767730186"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64 as a component of Red Hat Developer Hub 1.7",
"product_id": "Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
},
"product_reference": "registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"relates_to_product_reference": "Red Hat Developer Hub 1.7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64 as a component of Red Hat Developer Hub 1.7",
"product_id": "Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64"
},
"product_reference": "registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"relates_to_product_reference": "Red Hat Developer Hub 1.7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64 as a component of Red Hat Developer Hub 1.7",
"product_id": "Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64"
},
"product_reference": "registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64",
"relates_to_product_reference": "Red Hat Developer Hub 1.7"
}
]
},
"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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
],
"known_not_affected": [
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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-01-07T18:34:52+00:00",
"details": "For more about Red Hat Developer Hub, see References links",
"product_ids": [
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0261"
},
{
"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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
],
"known_not_affected": [
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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-01-07T18:34:52+00:00",
"details": "For more about Red Hat Developer Hub, see References links",
"product_ids": [
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0261"
},
{
"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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64"
]
}
],
"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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
],
"known_not_affected": [
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64"
]
},
"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-01-07T18:34:52+00:00",
"details": "For more about Red Hat Developer Hub, see References links",
"product_ids": [
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0261"
},
{
"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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64"
]
}
],
"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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64"
]
}
],
"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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
],
"known_not_affected": [
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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-01-07T18:34:52+00:00",
"details": "For more about Red Hat Developer Hub, see References links",
"product_ids": [
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0261"
},
{
"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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
],
"known_not_affected": [
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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-01-07T18:34:52+00:00",
"details": "For more about Red Hat Developer Hub, see References links",
"product_ids": [
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0261"
},
{
"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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_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 Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:29ada5e84c6b204cf518191a21bbd22de5cb53a61bc1812b1072ce5c28a235b2_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:e191728df327f9e904c981f7f92bb2ca03fc4555094e0f53b12d86a367831b7b_amd64",
"Red Hat Developer Hub 1.7:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:91549345e194052fa0248082962e552ea46548a5981f9975e439791ee1ecbe23_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "node-forge: node-forge ASN.1 Unbounded Recursion"
}
]
}
RHSA-2026:0414
Vulnerability from csaf_redhat - Published: 2026-01-08 22:34 - Updated: 2026-06-14 15:09A vulnerability was found in Python/CPython that does not disallow configuring an empty list ("[]") for SSLContext.set_npn_protocols(), which is an invalid value for the underlying OpenSSL API. This issue results in a buffer over-read when NPN is used. See CVE -2024-5535 for OpenSSL for more information.
CWE-20 - Improper Input Validation| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
|
A vulnerability was found in systemd-coredump. This flaw allows an attacker to force a SUID process to crash and replace it with a non-SUID binary to access the original's privileged process coredump, allowing the attacker to read sensitive data, such as /etc/shadow content, loaded by the original process. A SUID binary or process has a special type of permission, which allows the process to run with the file owner's permissions, regardless of the user executing the binary. This allows the process to access more restricted data than unprivileged users or processes would be able to. An attacker can leverage this flaw by forcing a SUID process to crash and force the Linux kernel to recycle the process PID before systemd-coredump can analyze the /proc/pid/auxv file. If the attacker wins the race condition, they gain access to the original's SUID process coredump file. They can read sensitive content loaded into memory by the original binary, affecting data confidentiality.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
A denial-of-service (DoS) vulnerability has been discovered in Python's html.parser.HTMLParser class. When processing specially malformed HTML input, the parsing runtime can become quadratic with respect to the input size. This significantly increased processing time can lead to excessive resource consumption, ultimately causing a denial-of-service condition in applications that rely on this parser.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
A vulnerability in Python’s os.path.expandvars() function that can cause performance degradation. When processing specially crafted, user-controlled input with nested environment variable patterns, the function exhibits quadratic time complexity, potentially leading to excessive CPU usage and denial of service (DoS) conditions. No code execution or data exposure occurs, so the impact is limited to performance slowdown.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
A zip file handling flaw has been discovered in the python standard library `zipfile` module. The 'zipfile' module would not check the validity of the ZIP64 End of Central Directory (EOCD) Locator record offset value would not be used to locate the ZIP64 EOCD record, instead the ZIP64 EOCD record would be assumed to be the previous record in the ZIP archive. This could be abused to create ZIP archives that are handled differently by the 'zipfile' module compared to other ZIP implementations.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in libxstl/libxml2. The 'exsltDynMapFunction' function in libexslt/dynamic.c does not contain a recursion depth check, which may cause an infinite loop via a specially crafted XSLT document while handling 'dyn:map()', leading to stack exhaustion and a local denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
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 Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_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 Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Workaround
|
A relative path traversal flaw was found in the gnu tar utility. When archives with relative paths are extracted without the ‘--keep-old-files’ (‘-k’), the extraction process may overwrite existing files that the current user has access to. The server may be impacted if these files are critical to the operation of some service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
A memory amplification vulnerability in libexpat allows attackers to trigger excessive dynamic memory allocations by submitting specially crafted XML input. A small input (~250 KiB) can cause the parser to allocate hundreds of megabytes, leading to denial-of-service (DoS) through memory exhaustion.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Django. The django.utils.archive.extract() function, used by startapp --templateand startproject --template, allowed partial directory-traversal via an archive with file paths sharing a common prefix with the target directory.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Workaround
|
A flaw was found in OpenSSH where control characters in usernames were not properly validated when sourced from untrusted inputs like the command line or configuration expansion. If a ProxyCommand is used, these control characters could modify command behavior, potentially leading to code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — | ||
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
A flaw was found in OpenSSH where the SSH client accepted \0 (null) characters in ssh:// URIs. When a ProxyCommand is configured, these characters could alter how the command is parsed, potentially leading to code execution depending on how the proxy is set up.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — | ||
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
A flaw was found in Django. This vulnerability allows a remote attacker to cause a potential denial-of-service (DoS) attack triggering Central Processing Unit (CPU) and memory exhaustion via specially crafted Extensible Markup Language (XML) input processed by the XML Deserializer.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Workaround
|
A buffer overflow flaw has been discovered in libpng. An out-of-bounds read vulnerability exists in png_image_read_composite when processing palette images with PNG_FLAG_OPTIMIZE_ALPHA enabled. The palette compositing code in png_init_read_transformations incorrectly applies background compositing during premultiplication, violating the invariant component ≤ alpha × 257 required by the simplified PNG API.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Workaround
|
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 Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Workaround
|
A buffer overflow flaw has been discovered in libpng. There is a heap buffer overflow vulnerability in the libpng simplified API function png_image_finish_read when processing 16-bit interlaced PNGs with 8-bit output format. Attacker-crafted interlaced PNG files cause heap writes beyond allocated buffer bounds.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_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 Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Workaround
|
An out of bounds read vulnerability has been discovered in libpng. This vulnerability is in libpng's simplified API allows reading up to 1012 bytes beyond the png_sRGB_base[512] array when processing valid palette PNG images with partial transparency and gamma correction. The PNG files that trigger this vulnerability are valid per the PNG specification; the bug is in libpng's internal state management.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 | — |
Vendor Fix
fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "A Subscription Management tool for finding and reporting Red Hat product usage",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat Discovery, also known as Discovery, is an inspection and reporting tool that finds,\nidentifies, and reports environment data, or facts, such as the number of physical and virtual\nsystems on a network, their operating systems, and relevant configuration data stored within\nthem. Discovery also identifies and reports more detailed facts for some versions of key\nRed Hat packages and products that it finds in the network.",
"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:0414",
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2024-5642",
"url": "https://access.redhat.com/security/cve/CVE-2024-5642"
},
{
"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-45582",
"url": "https://access.redhat.com/security/cve/CVE-2025-45582"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-4598",
"url": "https://access.redhat.com/security/cve/CVE-2025-4598"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-59375",
"url": "https://access.redhat.com/security/cve/CVE-2025-59375"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-59682",
"url": "https://access.redhat.com/security/cve/CVE-2025-59682"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-6069",
"url": "https://access.redhat.com/security/cve/CVE-2025-6069"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-6075",
"url": "https://access.redhat.com/security/cve/CVE-2025-6075"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61984",
"url": "https://access.redhat.com/security/cve/CVE-2025-61984"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61985",
"url": "https://access.redhat.com/security/cve/CVE-2025-61985"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-64460",
"url": "https://access.redhat.com/security/cve/CVE-2025-64460"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-64720",
"url": "https://access.redhat.com/security/cve/CVE-2025-64720"
},
{
"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-65018",
"url": "https://access.redhat.com/security/cve/CVE-2025-65018"
},
{
"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-66293",
"url": "https://access.redhat.com/security/cve/CVE-2025-66293"
},
{
"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-8291",
"url": "https://access.redhat.com/security/cve/CVE-2025-8291"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-9714",
"url": "https://access.redhat.com/security/cve/CVE-2025-9714"
},
{
"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/subscription_central/1-latest/#Discovery",
"url": "https://docs.redhat.com/en/documentation/subscription_central/1-latest/#Discovery"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_0414.json"
}
],
"title": "Red Hat Security Advisory: A Subscription Management tool for finding and reporting Red Hat product usage",
"tracking": {
"current_release_date": "2026-06-14T15:09:10+00:00",
"generator": {
"date": "2026-06-14T15:09:10+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:0414",
"initial_release_date": "2026-01-08T22:34:17+00:00",
"revision_history": [
{
"date": "2026-01-08T22:34:17+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-08T22:34:21+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:09:10+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Discovery 2",
"product": {
"name": "Red Hat Discovery 2",
"product_id": "Red Hat Discovery 2",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:discovery:2::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Discovery"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"product": {
"name": "registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"product_id": "registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/discovery-server-rhel9@sha256%3Ad4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf?arch=amd64\u0026repository_url=registry.redhat.io/discovery\u0026tag=1767888970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"product": {
"name": "registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"product_id": "registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/discovery-ui-rhel9@sha256%3A899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee?arch=amd64\u0026repository_url=registry.redhat.io/discovery\u0026tag=1767904573"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"product": {
"name": "registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"product_id": "registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"product_identification_helper": {
"purl": "pkg:oci/discovery-server-rhel9@sha256%3A75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543?arch=arm64\u0026repository_url=registry.redhat.io/discovery\u0026tag=1767888970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64",
"product": {
"name": "registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64",
"product_id": "registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/discovery-ui-rhel9@sha256%3A8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e?arch=arm64\u0026repository_url=registry.redhat.io/discovery\u0026tag=1767904573"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64 as a component of Red Hat Discovery 2",
"product_id": "Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64"
},
"product_reference": "registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"relates_to_product_reference": "Red Hat Discovery 2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64 as a component of Red Hat Discovery 2",
"product_id": "Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
},
"product_reference": "registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"relates_to_product_reference": "Red Hat Discovery 2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64 as a component of Red Hat Discovery 2",
"product_id": "Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64"
},
"product_reference": "registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"relates_to_product_reference": "Red Hat Discovery 2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64 as a component of Red Hat Discovery 2",
"product_id": "Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
},
"product_reference": "registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64",
"relates_to_product_reference": "Red Hat Discovery 2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-5642",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"discovery_date": "2024-06-28T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2294682"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability was found in Python/CPython that does not disallow configuring an empty list (\"[]\") for SSLContext.set_npn_protocols(), which is an invalid value for the underlying OpenSSL API. This issue results in a buffer over-read when NPN is used. See CVE -2024-5535 for OpenSSL for more information.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Invalid value for OpenSSL API may cause Buffer over-read when NPN is used",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated with a Low severity due to NPN not being widely used and specifying an empty list is likely uncommon in practice. Typically, a protocol name would be configured.",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2024-5642"
},
{
"category": "external",
"summary": "RHBZ#2294682",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2294682"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2024-5642",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-5642"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-5642",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2024-5642"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/PLP2JI3PJY33YG6P5BZYSSNU66HASXBQ/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/PLP2JI3PJY33YG6P5BZYSSNU66HASXBQ/"
}
],
"release_date": "2024-06-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 2.7,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "python: Invalid value for OpenSSL API may cause Buffer over-read when NPN is used"
},
{
"cve": "CVE-2025-4598",
"cwe": {
"id": "CWE-364",
"name": "Signal Handler Race Condition"
},
"discovery_date": "2025-05-29T19:04:54.578000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2369242"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability was found in systemd-coredump. This flaw allows an attacker to force a SUID process to crash and replace it with a non-SUID binary to access the original\u0027s privileged process coredump, allowing the attacker to read sensitive data, such as /etc/shadow content, loaded by the original process.\n\nA SUID binary or process has a special type of permission, which allows the process to run with the file owner\u0027s permissions, regardless of the user executing the binary. This allows the process to access more restricted data than unprivileged users or processes would be able to. An attacker can leverage this flaw by forcing a SUID process to crash and force the Linux kernel to recycle the process PID before systemd-coredump can analyze the /proc/pid/auxv file. If the attacker wins the race condition, they gain access to the original\u0027s SUID process coredump file. They can read sensitive content loaded into memory by the original binary, affecting data confidentiality.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "systemd-coredump: race condition that allows a local attacker to crash a SUID program and gain read access to the resulting core dump",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw was rated as having a severity of Moderate due to the complexity to exploit this flaw. The attacker needs to setup a way to win the race condition and have an unprivileged local account to successfully exploit this vulnerability.\n\nBy default Red Hat Enterprise Linux 8 doesn\u0027t allow systemd-coredump to create dumps of SUID programs as the /proc/sys/fs/suid_dumpable is set to 0, disabling by default this capability.",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-4598"
},
{
"category": "external",
"summary": "RHBZ#2369242",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2369242"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-4598",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-4598"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-4598",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-4598"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2025/05/29/3",
"url": "https://www.openwall.com/lists/oss-security/2025/05/29/3"
}
],
"release_date": "2025-05-29T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"category": "workaround",
"details": "This issue can be mitigated by disabling the capability of the system to generate a coredump for SUID binaries. The perform that, the following command can be ran as `root` user:\n\n~~~\necho 0 \u003e /proc/sys/fs/suid_dumpable\n~~~\n\nWhile this mitigates this vulnerability while it\u0027s not possible to update the systemd package, it disables the capability of analyzing crashes for such binaries.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "systemd-coredump: race condition that allows a local attacker to crash a SUID program and gain read access to the resulting core dump"
},
{
"cve": "CVE-2025-6069",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"discovery_date": "2025-06-17T14:00:45.339399+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2373234"
}
],
"notes": [
{
"category": "description",
"text": "A denial-of-service (DoS) vulnerability has been discovered in Python\u0027s html.parser.HTMLParser class. When processing specially malformed HTML input, the parsing runtime can become quadratic with respect to the input size. This significantly increased processing time can lead to excessive resource consumption, ultimately causing a denial-of-service condition in applications that rely on this parser.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Python HTMLParser quadratic complexity",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-6069"
},
{
"category": "external",
"summary": "RHBZ#2373234",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2373234"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-6069",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-6069"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-6069",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-6069"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/4455cbabf991e202185a25a631af206f60bbc949",
"url": "https://github.com/python/cpython/commit/4455cbabf991e202185a25a631af206f60bbc949"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6eb6c5dbfb528bd07d77b60fd71fd05d81d45c41",
"url": "https://github.com/python/cpython/commit/6eb6c5dbfb528bd07d77b60fd71fd05d81d45c41"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/d851f8e258c7328814943e923a7df81bca15df4b",
"url": "https://github.com/python/cpython/commit/d851f8e258c7328814943e923a7df81bca15df4b"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/135462",
"url": "https://github.com/python/cpython/issues/135462"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/135464",
"url": "https://github.com/python/cpython/pull/135464"
}
],
"release_date": "2025-06-17T13:39:46.058000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 4.3,
"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:L",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Python HTMLParser quadratic complexity"
},
{
"cve": "CVE-2025-6075",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-31T17:01:47.052517+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2408891"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability in Python\u2019s os.path.expandvars() function that can cause performance degradation. When processing specially crafted, user-controlled input with nested environment variable patterns, the function exhibits quadratic time complexity, potentially leading to excessive CPU usage and denial of service (DoS) conditions. No code execution or data exposure occurs, so the impact is limited to performance slowdown.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Quadratic complexity in os.path.expandvars() with user-controlled template",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low rather than Moderate because it only causes a performance inefficiency without affecting code execution, data integrity, or confidentiality. The flaw lies in the algorithmic complexity of os.path.expandvars(), which can become quadratic when processing crafted input containing repetitive or nested environment variable references. Exploitation requires the attacker to control the input string passed to this function, which is uncommon in secure applications. Moreover, the impact is limited to increased CPU utilization and potential slowdown, not system compromise or data manipulation. Since the issue does not introduce memory corruption, privilege escalation, or information disclosure risks, its overall impact scope and exploitability are minimal, justifying a Low severity rating.",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-6075"
},
{
"category": "external",
"summary": "RHBZ#2408891",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2408891"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-6075",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-6075"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-6075",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-6075"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/136065",
"url": "https://github.com/python/cpython/issues/136065"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/IUP5QJ6D4KK6ULHOMPC7DPNKRYQTQNLA/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/IUP5QJ6D4KK6ULHOMPC7DPNKRYQTQNLA/"
}
],
"release_date": "2025-10-31T16:41:34.983000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"category": "workaround",
"details": "No mitigation is currently available that meets Red Hat Product Security\u2019s standards for usability, deployment, applicability, or stability.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 4.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "python: Quadratic complexity in os.path.expandvars() with user-controlled template"
},
{
"cve": "CVE-2025-8291",
"cwe": {
"id": "CWE-130",
"name": "Improper Handling of Length Parameter Inconsistency"
},
"discovery_date": "2025-10-07T19:01:23.599055+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2402342"
}
],
"notes": [
{
"category": "description",
"text": "A zip file handling flaw has been discovered in the python standard library `zipfile` module. The \u0027zipfile\u0027 module would not check the validity of the ZIP64 End of Central Directory (EOCD) Locator record offset value would not be used to locate the ZIP64 EOCD record, instead the ZIP64 EOCD record would be assumed to be the previous record in the ZIP archive. This could be abused to create ZIP archives that are handled differently by the \u0027zipfile\u0027 module compared to other ZIP implementations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: python: Python zipfile End of Central Directory (EOCD) Locator record offset not checked",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-8291"
},
{
"category": "external",
"summary": "RHBZ#2402342",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2402342"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-8291",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-8291"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-8291",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-8291"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/162997bb70e067668c039700141770687bc8f267",
"url": "https://github.com/python/cpython/commit/162997bb70e067668c039700141770687bc8f267"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/333d4a6f4967d3ace91492a39ededbcf3faa76a6",
"url": "https://github.com/python/cpython/commit/333d4a6f4967d3ace91492a39ededbcf3faa76a6"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/139700",
"url": "https://github.com/python/cpython/issues/139700"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/139702",
"url": "https://github.com/python/cpython/pull/139702"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/QECOPWMTH4VPPJAXAH2BGTA4XADOP62G/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/QECOPWMTH4VPPJAXAH2BGTA4XADOP62G/"
}
],
"release_date": "2025-10-07T18:10:05.908000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: python: Python zipfile End of Central Directory (EOCD) Locator record offset not checked"
},
{
"cve": "CVE-2025-9714",
"cwe": {
"id": "CWE-606",
"name": "Unchecked Input for Loop Condition"
},
"discovery_date": "2025-09-02T13:03:56.452000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2392605"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libxstl/libxml2. The \u0027exsltDynMapFunction\u0027 function in libexslt/dynamic.c does not contain a recursion depth check, which may cause an infinite loop via a specially crafted XSLT document while handling \u0027dyn:map()\u0027, leading to stack exhaustion and a local denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libxslt: libxml2: Inifinite recursion at exsltDynMapFunction function in libexslt/dynamic.c",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "No evidence was found for arbitrary memory corruption through this flaw, limiting its impact to Availability only, and reducing its severity to Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-9714"
},
{
"category": "external",
"summary": "RHBZ#2392605",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2392605"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-9714",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-9714"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-9714",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-9714"
},
{
"category": "external",
"summary": "https://gitlab.gnome.org/GNOME/libxml2/-/commit/677a42645ef22b5a50741bad5facf9d8a8bc6d21",
"url": "https://gitlab.gnome.org/GNOME/libxml2/-/commit/677a42645ef22b5a50741bad5facf9d8a8bc6d21"
},
{
"category": "external",
"summary": "https://gitlab.gnome.org/GNOME/libxslt/-/issues/148",
"url": "https://gitlab.gnome.org/GNOME/libxslt/-/issues/148"
}
],
"release_date": "2025-09-02T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"category": "workaround",
"details": "The impact of this flaw may be reduced by setting strict resource limits to the stack size of processes at the operational system level. This can be achieved either through the \u0027ulimit\u0027 shell built-in or the \u0027limits.conf\u0027 file.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 6.2,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "libxslt: libxml2: Inifinite recursion at exsltDynMapFunction function in libexslt/dynamic.c"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_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 Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_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-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_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 Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_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-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-45582",
"cwe": {
"id": "CWE-24",
"name": "Path Traversal: \u0027../filedir\u0027"
},
"discovery_date": "2025-07-11T17:00:47.340822+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2379592"
}
],
"notes": [
{
"category": "description",
"text": "A relative path traversal flaw was found in the gnu tar utility. When archives with relative paths are extracted without the \u2018--keep-old-files\u2019 (\u2018-k\u2019), the extraction process may overwrite existing files that the current user has access to. The server may be impacted if these files are critical to the operation of some service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "tar: Tar path traversal",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-45582"
},
{
"category": "external",
"summary": "RHBZ#2379592",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2379592"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-45582",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-45582"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-45582",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-45582"
},
{
"category": "external",
"summary": "https://github.com/i900008/vulndb/blob/main/Gnu_tar_vuln.md",
"url": "https://github.com/i900008/vulndb/blob/main/Gnu_tar_vuln.md"
},
{
"category": "external",
"summary": "https://www.gnu.org/software/tar/",
"url": "https://www.gnu.org/software/tar/"
},
{
"category": "external",
"summary": "https://www.gnu.org/software/tar/manual/html_node/Integrity.html#Integrity",
"url": "https://www.gnu.org/software/tar/manual/html_node/Integrity.html#Integrity"
}
],
"release_date": "2025-07-11T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.6,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "tar: Tar path traversal"
},
{
"cve": "CVE-2025-59375",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-09-15T03:00:59.775098+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2395108"
}
],
"notes": [
{
"category": "description",
"text": "A memory amplification vulnerability in libexpat allows attackers to trigger excessive dynamic memory allocations by submitting specially crafted XML input. A small input (~250 KiB) can cause the parser to allocate hundreds of megabytes, leading to denial-of-service (DoS) through memory exhaustion.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "firefox: thunderbird: expat: libexpat in Expat allows attackers to trigger large dynamic memory allocations via a small document that is submitted for parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is Important rather than Critical because, while it allows for significant resource exhaustion leading to denial-of-service (DoS), it does not enable arbitrary code execution, data leakage, or privilege escalation. The vulnerability stems from an uncontrolled memory amplification behavior in libexpat\u2019s parser, where a relatively small XML payload can cause disproportionately large heap allocations. However, the flaw is limited in scope to service disruption and requires the attacker to submit a crafted XML document\u2014something that can be mitigated with proper input validation and memory usage limits. Therefore, while the exploitability is high, the impact is confined to availability, not confidentiality or integrity, making it a high-severity but not critical flaw.\n\nIn Firefox and Thunderbird, where libexpat is a transitive userspace dependency, exploitation usually just crashes the application (app-level DoS), so it is classified as Moderate instead of 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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-59375"
},
{
"category": "external",
"summary": "RHBZ#2395108",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2395108"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-59375",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-59375"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-59375",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-59375"
},
{
"category": "external",
"summary": "https://www.mozilla.org/security/advisories/mfsa2026-22/#CVE-2025-59375",
"url": "https://www.mozilla.org/security/advisories/mfsa2026-22/#CVE-2025-59375"
},
{
"category": "external",
"summary": "https://www.mozilla.org/security/advisories/mfsa2026-24/#CVE-2025-59375",
"url": "https://www.mozilla.org/security/advisories/mfsa2026-24/#CVE-2025-59375"
}
],
"release_date": "2025-09-15T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"category": "workaround",
"details": "To mitigate the issue, limit XML input size and complexity before parsing, and avoid accepting compressed or deeply nested XML. Use OS-level resource controls (like ulimit or setrlimit()) to cap memory usage, or run the parser in a sandboxed or isolated process with strict memory and CPU limits. This helps prevent denial-of-service by containing excessive resource consumption.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "firefox: thunderbird: expat: libexpat in Expat allows attackers to trigger large dynamic memory allocations via a small document that is submitted for parsing"
},
{
"cve": "CVE-2025-59682",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2025-09-30T13:18:31.746000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2400450"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Django. The django.utils.archive.extract() function, used by startapp --templateand startproject --template, allowed partial directory-traversal via an archive with file paths sharing a common prefix with the target directory.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "django: Potential partial directory-traversal via archive.extract()",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-59682"
},
{
"category": "external",
"summary": "RHBZ#2400450",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2400450"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-59682",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-59682"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-59682",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-59682"
}
],
"release_date": "2025-10-01T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "django: Potential partial directory-traversal via archive.extract()"
},
{
"cve": "CVE-2025-61984",
"cwe": {
"id": "CWE-159",
"name": "Improper Handling of Invalid Use of Special Elements"
},
"discovery_date": "2025-10-06T19:01:13.449665+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2401960"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH where control characters in usernames were not properly validated when sourced from untrusted inputs like the command line or configuration expansion. If a ProxyCommand is used, these control characters could modify command behavior, potentially leading to code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssh: OpenSSH: Control characters in usernames can lead to code execution via ProxyCommand",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The impact is MODERATE because it is a critical component used across many Red Hat products.\nThe issue occurs only when a ProxyCommand is configured and the SSH client handles a username containing control characters from an untrusted source, such as script-generated input or expanded configuration values.",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61984"
},
{
"category": "external",
"summary": "RHBZ#2401960",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2401960"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61984",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61984"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61984",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61984"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=175974522032149\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=175974522032149\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.com/releasenotes.html#10.1p1",
"url": "https://www.openssh.com/releasenotes.html#10.1p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2025/10/06/1",
"url": "https://www.openwall.com/lists/oss-security/2025/10/06/1"
}
],
"release_date": "2025-10-06T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssh: OpenSSH: Control characters in usernames can lead to code execution via ProxyCommand"
},
{
"cve": "CVE-2025-61985",
"cwe": {
"id": "CWE-158",
"name": "Improper Neutralization of Null Byte or NUL Character"
},
"discovery_date": "2025-10-06T19:01:16.841946+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2401962"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH where the SSH client accepted \\0 (null) characters in ssh:// URIs. When a ProxyCommand is configured, these characters could alter how the command is parsed, potentially leading to code execution depending on how the proxy is set up.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssh: OpenSSH: Null character in ssh:// URI can lead to code execution via ProxyCommand",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The impact is MODERATE because it is a critical component used across many Red Hat products.\nExploiting this vulnerability would require a specific configuration where ProxyCommand is enabled and the SSH client processes an untrusted ssh:// URI containing null bytes. Under these conditions, the command parser may misinterpret the URI and execute unintended shell commands.",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61985"
},
{
"category": "external",
"summary": "RHBZ#2401962",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2401962"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61985",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61985"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61985",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61985"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=175974522032149\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=175974522032149\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.com/releasenotes.html#10.1p1",
"url": "https://www.openssh.com/releasenotes.html#10.1p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2025/10/06/1",
"url": "https://www.openwall.com/lists/oss-security/2025/10/06/1"
}
],
"release_date": "2025-10-06T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssh: OpenSSH: Null character in ssh:// URI can lead to code execution via ProxyCommand"
},
{
"cve": "CVE-2025-64460",
"cwe": {
"id": "CWE-407",
"name": "Inefficient Algorithmic Complexity"
},
"discovery_date": "2025-12-02T16:01:05.300335+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418366"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Django. This vulnerability allows a remote attacker to cause a potential denial-of-service (DoS) attack triggering Central Processing Unit (CPU) and memory exhaustion via specially crafted Extensible Markup Language (XML) input processed by the XML Deserializer.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Django: Django: Algorithmic complexity in XML Deserializer leads to denial of service",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that process XML input using Django\u0027s XML Deserializer, including Red Hat Ansible Automation Platform, Red Hat OpenStack Platform, and OpenShift Service Mesh. A remote attacker can exploit this flaw by providing specially crafted XML, leading to a denial-of-service due to CPU and memory exhaustion.",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-64460"
},
{
"category": "external",
"summary": "RHBZ#2418366",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418366"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-64460",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-64460"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-64460",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-64460"
},
{
"category": "external",
"summary": "https://docs.djangoproject.com/en/dev/releases/security/",
"url": "https://docs.djangoproject.com/en/dev/releases/security/"
},
{
"category": "external",
"summary": "https://groups.google.com/g/django-announce",
"url": "https://groups.google.com/g/django-announce"
},
{
"category": "external",
"summary": "https://www.djangoproject.com/weblog/2025/dec/02/security-releases/",
"url": "https://www.djangoproject.com/weblog/2025/dec/02/security-releases/"
}
],
"release_date": "2025-12-02T15:15:34.451000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Django: Django: Algorithmic complexity in XML Deserializer leads to denial of service"
},
{
"cve": "CVE-2025-64720",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2025-11-25T00:00:54.081073+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2416904"
}
],
"notes": [
{
"category": "description",
"text": "A buffer overflow flaw has been discovered in libpng. An out-of-bounds read vulnerability exists in png_image_read_composite when processing palette images with PNG_FLAG_OPTIMIZE_ALPHA enabled. The palette compositing code in png_init_read_transformations incorrectly applies background compositing during premultiplication, violating the invariant component \u2264 alpha \u00d7 257 required by the simplified PNG API.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libpng: LIBPNG buffer overflow",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. An out-of-bounds read in libpng can occur when processing specially crafted palette images with `PNG_FLAG_OPTIMIZE_ALPHA` enabled. Successful exploitation requires a user to process a malicious PNG file, leading to potential application crash or information disclosure.\n\njava-*-openjdk-headless packages do not contain libsplashscreen.so, hence 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": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-64720"
},
{
"category": "external",
"summary": "RHBZ#2416904",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2416904"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-64720",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-64720"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-64720",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-64720"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/08da33b4c88cfcd36e5a706558a8d7e0e4773643",
"url": "https://github.com/pnggroup/libpng/commit/08da33b4c88cfcd36e5a706558a8d7e0e4773643"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/issues/686",
"url": "https://github.com/pnggroup/libpng/issues/686"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/pull/751",
"url": "https://github.com/pnggroup/libpng/pull/751"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/security/advisories/GHSA-hfc7-ph9c-wcww",
"url": "https://github.com/pnggroup/libpng/security/advisories/GHSA-hfc7-ph9c-wcww"
}
],
"release_date": "2025-11-24T23:45:38.315000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libpng: LIBPNG buffer overflow"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
]
}
],
"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 Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
]
},
"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-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "glob: glob: Command Injection Vulnerability via Malicious Filenames"
},
{
"cve": "CVE-2025-65018",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2025-11-25T00:01:05.570152+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2416907"
}
],
"notes": [
{
"category": "description",
"text": "A buffer overflow flaw has been discovered in libpng. There is a heap buffer overflow vulnerability in the libpng simplified API function png_image_finish_read when processing 16-bit interlaced PNGs with 8-bit output format. Attacker-crafted interlaced PNG files cause heap writes beyond allocated buffer bounds.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libpng: LIBPNG heap buffer overflow",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. A heap buffer overflow exists in the libpng library\u0027s png_image_finish_read function when processing specially crafted 16-bit interlaced PNG images with an 8-bit output format. Successful exploitation requires a user or an automated system to process a malicious PNG file, which could lead to application crashes or arbitrary code execution.\n\njava-*-openjdk-headless packages do not contain libsplashscreen.so, hence 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": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-65018"
},
{
"category": "external",
"summary": "RHBZ#2416907",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2416907"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-65018",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-65018"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-65018",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-65018"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/16b5e3823918840aae65c0a6da57c78a5a496a4d",
"url": "https://github.com/pnggroup/libpng/commit/16b5e3823918840aae65c0a6da57c78a5a496a4d"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/218612ddd6b17944e21eda56caf8b4bf7779d1ea",
"url": "https://github.com/pnggroup/libpng/commit/218612ddd6b17944e21eda56caf8b4bf7779d1ea"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/issues/755",
"url": "https://github.com/pnggroup/libpng/issues/755"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/pull/757",
"url": "https://github.com/pnggroup/libpng/pull/757"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/security/advisories/GHSA-7wv6-48j4-hj3g",
"url": "https://github.com/pnggroup/libpng/security/advisories/GHSA-7wv6-48j4-hj3g"
}
],
"release_date": "2025-11-24T23:50:18.294000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libpng: LIBPNG heap buffer overflow"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_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 Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_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-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "node-forge: node-forge ASN.1 Unbounded Recursion"
},
{
"cve": "CVE-2025-66293",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2025-12-03T21:00:59.956903+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418711"
}
],
"notes": [
{
"category": "description",
"text": "An out of bounds read vulnerability has been discovered in libpng. This vulnerability is in libpng\u0027s simplified API allows reading up to 1012 bytes beyond the png_sRGB_base[512] array when processing valid palette PNG images with partial transparency and gamma correction. The PNG files that trigger this vulnerability are valid per the PNG specification; the bug is in libpng\u0027s internal state management.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libpng: LIBPNG out-of-bounds read in png_image_read_composite",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The Red Hat Product Security team has rated this vulnerability as Important as it affects libpng, a widely used library for PNG image processing. The flaw is due to an out-of-bounds read in libpng\u2019s simplified API when handling specially crafted PNG images containing partial transparency and gamma correction data. Successful exploitation could result in information disclosure or cause application crashes in applications processing untrusted PNG content.\n\nFor `java-17-openjdk-headless` and `java-21-openjdk-headless`, while the affected code is present in the bundled sources, it is not exercised by these headless packages.",
"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 Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"known_not_affected": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66293"
},
{
"category": "external",
"summary": "RHBZ#2418711",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418711"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66293",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66293"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66293",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66293"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/788a624d7387a758ffd5c7ab010f1870dea753a1",
"url": "https://github.com/pnggroup/libpng/commit/788a624d7387a758ffd5c7ab010f1870dea753a1"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/a05a48b756de63e3234ea6b3b938b8f5f862484a",
"url": "https://github.com/pnggroup/libpng/commit/a05a48b756de63e3234ea6b3b938b8f5f862484a"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/issues/764",
"url": "https://github.com/pnggroup/libpng/issues/764"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/security/advisories/GHSA-9mpm-9pxh-mg4f",
"url": "https://github.com/pnggroup/libpng/security/advisories/GHSA-9mpm-9pxh-mg4f"
}
],
"release_date": "2025-12-03T20:33:57.086000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
},
{
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libpng: LIBPNG out-of-bounds read in png_image_read_composite"
},
{
"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",
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
},
"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-01-08T22:34:17+00:00",
"details": "The containers required to run Discovery can be installed through discovery-installer\nRPM. See the official documentation for more details.",
"product_ids": [
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0414"
}
],
"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 Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:75723049a444b5136e2d40920e2852f0840fecf60832a8bbb06e488fc9bba543_arm64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-server-rhel9@sha256:d4e8987a100ea60942306f1564679e51fa1364f6124fbfb3100959f83a1f16bf_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:899bd7f941512d54af8ab369ca03028a7d27d05887ccce24bc12c7ccd3e4dbee_amd64",
"Red Hat Discovery 2:registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8af6fd7c8fe38d6bfd22e42810badde0aeeae738ea28667ae29dbc0cf4266f3e_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion"
}
]
}
RHSA-2026:0531
Vulnerability from csaf_redhat - Published: 2026-01-13 21:28 - Updated: 2026-06-14 15:09A 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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64 | — |
Workaround
|
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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64 | — |
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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_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 Developer Hub 1.8.2 has been released.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat Developer Hub (RHDH) is Red Hat\u0027s enterprise-grade, self-managed, customizable developer portal based on Backstage.io. RHDH is supported on OpenShift and other major Kubernetes clusters (AKS, EKS, GKE). The core features of RHDH include a single pane of glass, a centralized software catalog, self-service via golden path templates, and Tech Docs. RHDH is extensible by plugins.",
"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:0531",
"url": "https://access.redhat.com/errata/RHSA-2026:0531"
},
{
"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-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/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://catalog.redhat.com/search?gs\u0026searchType=containers\u0026q=rhdh",
"url": "https://catalog.redhat.com/search?gs\u0026searchType=containers\u0026q=rhdh"
},
{
"category": "external",
"summary": "https://developers.redhat.com/rhdh/overview",
"url": "https://developers.redhat.com/rhdh/overview"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_developer_hub",
"url": "https://docs.redhat.com/en/documentation/red_hat_developer_hub"
},
{
"category": "external",
"summary": "https://issues.redhat.com/browse/RHIDP-11116",
"url": "https://issues.redhat.com/browse/RHIDP-11116"
},
{
"category": "external",
"summary": "https://issues.redhat.com/browse/RHIDP-11118",
"url": "https://issues.redhat.com/browse/RHIDP-11118"
},
{
"category": "external",
"summary": "https://issues.redhat.com/browse/RHIDP-11242",
"url": "https://issues.redhat.com/browse/RHIDP-11242"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_0531.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Developer Hub 1.8.2 release.",
"tracking": {
"current_release_date": "2026-06-14T15:09:13+00:00",
"generator": {
"date": "2026-06-14T15:09:13+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:0531",
"initial_release_date": "2026-01-13T21:28:08+00:00",
"revision_history": [
{
"date": "2026-01-13T21:28:08+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-13T21:28:18+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:09:13+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Developer Hub 1.8",
"product": {
"name": "Red Hat Developer Hub 1.8",
"product_id": "Red Hat Developer Hub 1.8",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhdh:1.8::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Developer Hub"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64",
"product": {
"name": "registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64",
"product_id": "registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhdh-hub-rhel9@sha256%3A7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1?arch=amd64\u0026repository_url=registry.redhat.io/rhdh\u0026tag=1768247401"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64",
"product": {
"name": "registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64",
"product_id": "registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhdh-rhel9-operator@sha256%3A2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02?arch=amd64\u0026repository_url=registry.redhat.io/rhdh\u0026tag=1768247048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"product": {
"name": "registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"product_id": "registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhdh-operator-bundle@sha256%3A926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd?arch=amd64\u0026repository_url=registry.redhat.io/rhdh\u0026tag=1768250779"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64 as a component of Red Hat Developer Hub 1.8",
"product_id": "Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64"
},
"product_reference": "registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64",
"relates_to_product_reference": "Red Hat Developer Hub 1.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64 as a component of Red Hat Developer Hub 1.8",
"product_id": "Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64"
},
"product_reference": "registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"relates_to_product_reference": "Red Hat Developer Hub 1.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64 as a component of Red Hat Developer Hub 1.8",
"product_id": "Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64"
},
"product_reference": "registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64",
"relates_to_product_reference": "Red Hat Developer Hub 1.8"
}
]
},
"vulnerabilities": [
{
"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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64"
],
"known_not_affected": [
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_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-01-13T21:28:08+00:00",
"details": "For more about Red Hat Developer Hub, see References links",
"product_ids": [
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0531"
},
{
"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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64"
]
}
],
"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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64"
],
"known_not_affected": [
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64"
]
},
"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-01-13T21:28:08+00:00",
"details": "For more about Red Hat Developer Hub, see References links",
"product_ids": [
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0531"
},
{
"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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64"
]
}
],
"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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64"
]
}
],
"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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64"
],
"known_not_affected": [
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_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-01-13T21:28:08+00:00",
"details": "For more about Red Hat Developer Hub, see References links",
"product_ids": [
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0531"
},
{
"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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_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 Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:7185a8f744022307c7a178d35e7ae32d7797eed4f9379b2dba8954e2856f2ed1_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-operator-bundle@sha256:926035e11898ddff4ca044e19ec6daf5f159ad4dcf231ae3ab4a188f4c7ec0dd_amd64",
"Red Hat Developer Hub 1.8:registry.redhat.io/rhdh/rhdh-rhel9-operator@sha256:2075e690aa63b47dc2e0866bb0ca5eb6924a05176243a60c8f58c8885adf7e02_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-jws: auth0/node-jws: Improper signature verification in HS256 algorithm"
}
]
}
RHSA-2026:0761
Vulnerability from csaf_redhat - Published: 2026-01-19 03:34 - Updated: 2026-06-10 08:37A 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: 9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64 | — |
Workaround
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64 | — |
Workaround
|
A flaw was found in lz4-java. This vulnerability allows disclosure of sensitive data via crafted compressed input due to insufficient clearing of the output buffer in Java-based decompressor implementations.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64 | — | ||
| Unresolved product id: 9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64 | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update is now available for the Red Hat build of Cryostat 4 on RHEL 9.\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": "An update is now available for the Red Hat build of Cryostat 4 on RHEL 9.\n\nSecurity Fix(es):\n\n* lz4-java: Information Disclosure via Insufficient Output Buffer Clearing (CVE-2025-66566)\n* qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\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.",
"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:0761",
"url": "https://access.redhat.com/errata/RHSA-2026:0761"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2419500",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419500"
},
{
"category": "external",
"summary": "2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_0761.json"
}
],
"title": "Red Hat Security Advisory: Red Hat build of Cryostat security update",
"tracking": {
"current_release_date": "2026-06-10T08:37:42+00:00",
"generator": {
"date": "2026-06-10T08:37:42+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.8.2"
}
},
"id": "RHSA-2026:0761",
"initial_release_date": "2026-01-19T03:34:11+00:00",
"revision_history": [
{
"date": "2026-01-19T03:34:11+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-19T03:34:11+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-10T08:37:42+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Cryostat 4 on RHEL 9",
"product": {
"name": "Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:cryostat:4::el9"
}
}
}
],
"category": "product_family",
"name": "Cryostat"
},
{
"branches": [
{
"category": "product_version",
"name": "cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"product": {
"name": "cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"product_id": "cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-agent-init-rhel9\u0026tag=0.6.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"product": {
"name": "cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"product_id": "cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-db-rhel9\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"product": {
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"product_id": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-grafana-dashboard-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"product": {
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"product_id": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-openshift-console-plugin-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"product": {
"name": "cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"product_id": "cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-reports-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"product": {
"name": "cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"product_id": "cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"product": {
"name": "cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"product_id": "cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-operator-bundle\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"product": {
"name": "cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"product_id": "cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-rhel9-operator\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"product": {
"name": "cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"product_id": "cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-storage-rhel9\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"product": {
"name": "cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"product_id": "cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"product_identification_helper": {
"purl": "pkg:oci/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/jfr-datasource-rhel9\u0026tag=4.1.0-16"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"product": {
"name": "cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"product_id": "cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-agent-init-rhel9\u0026tag=0.6.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"product": {
"name": "cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"product_id": "cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-db-rhel9\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"product": {
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"product_id": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-grafana-dashboard-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"product": {
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"product_id": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-openshift-console-plugin-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"product": {
"name": "cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"product_id": "cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-reports-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"product": {
"name": "cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"product_id": "cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"product": {
"name": "cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"product_id": "cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-operator-bundle\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"product": {
"name": "cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"product_id": "cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-rhel9-operator\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"product": {
"name": "cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"product_id": "cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-storage-rhel9\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64",
"product": {
"name": "cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64",
"product_id": "cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64",
"product_identification_helper": {
"purl": "pkg:oci/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/jfr-datasource-rhel9\u0026tag=4.1.0-16"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64"
},
"product_reference": "cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64"
},
"product_reference": "cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64"
},
"product_reference": "cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64"
},
"product_reference": "cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64"
},
"product_reference": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64"
},
"product_reference": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64"
},
"product_reference": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64"
},
"product_reference": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64"
},
"product_reference": "cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64"
},
"product_reference": "cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64"
},
"product_reference": "cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64"
},
"product_reference": "cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64"
},
"product_reference": "cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64"
},
"product_reference": "cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64"
},
"product_reference": "cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64"
},
"product_reference": "cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64"
},
"product_reference": "cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64"
},
"product_reference": "cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64"
},
"product_reference": "cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
},
"product_reference": "cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
}
]
},
"vulnerabilities": [
{
"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": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_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": [
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64"
],
"known_not_affected": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_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-01-19T03:34:11+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0761"
},
{
"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": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_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": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-66566",
"cwe": {
"id": "CWE-908",
"name": "Use of Uninitialized Resource"
},
"discovery_date": "2025-12-05T19:00:50.134024+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419500"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in lz4-java. This vulnerability allows disclosure of sensitive data via crafted compressed input due to insufficient clearing of the output buffer in Java-based decompressor implementations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lz4-java: lz4-java: Information Disclosure via Insufficient Output Buffer Clearing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated IMPORTANT because it allows for information disclosure when Java-based decompressor implementations reuse output buffers without proper clearing, potentially exposing sensitive data via crafted compressed input. JNI-based implementations of lz4-java are not affected by this issue.",
"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": [
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
],
"known_not_affected": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66566"
},
{
"category": "external",
"summary": "RHBZ#2419500",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419500"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66566",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66566"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66566",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66566"
},
{
"category": "external",
"summary": "https://github.com/yawkat/lz4-java/commit/33d180cb70c4d93c80fb0dc3ab3002f457e93840",
"url": "https://github.com/yawkat/lz4-java/commit/33d180cb70c4d93c80fb0dc3ab3002f457e93840"
},
{
"category": "external",
"summary": "https://github.com/yawkat/lz4-java/security/advisories/GHSA-cmp6-m4wj-q63q",
"url": "https://github.com/yawkat/lz4-java/security/advisories/GHSA-cmp6-m4wj-q63q"
}
],
"release_date": "2025-12-05T18:10:16.470000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-19T03:34:11+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0761"
}
],
"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": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lz4-java: lz4-java: Information Disclosure via Insufficient Output Buffer Clearing"
}
]
}
RHSA-2026:1000
Vulnerability from csaf_redhat - Published: 2026-01-27 14:30 - Updated: 2026-06-08 19:38A 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.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_arm64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.20.12 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.20.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.20.12. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:0977\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nSecurity Fix(es):\n\n* qs: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\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.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"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:1000",
"url": "https://access.redhat.com/errata/RHSA-2026:1000"
},
{
"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/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_1000.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.20.12 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-08T19:38:52+00:00",
"generator": {
"date": "2026-06-08T19:38:52+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.8.2"
}
},
"id": "RHSA-2026:1000",
"initial_release_date": "2026-01-27T14:30:57+00:00",
"revision_history": [
{
"date": "2026-01-27T14:30:57+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-27T14:31:39+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-08T19:38:52+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.20",
"product": {
"name": "Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-ui-rhel9@sha256%3Aa0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3Aeb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3Af91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-rhel9@sha256%3Acb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592244"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel9@sha256%3Adce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3Abf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3Ae862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3Afbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9@sha256%3Ac52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9-operator@sha256%3A15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-nfs-rhel9@sha256%3Aba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshot-metadata-rhel9@sha256%3A767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3Acb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769021292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3Aa91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3Af3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3A852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3Ae888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-rhel9@sha256%3Afdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591734"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-agent-rhel9@sha256%3Af88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256%3Ae5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768994567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256%3Ab411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3Aa0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3Aeeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592134"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3Ac914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3A78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3Ad204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3Ab74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3Ae577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3Ae764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768895545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3Ad0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Aff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3Acbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3Afb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768856865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3A9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769001826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3Ab056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3Af29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591477"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595072"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3Ab9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3Af6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel9@sha256%3A94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel9@sha256%3A91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591332"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9@sha256%3A16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Aa127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel9@sha256%3Afbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768994301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel9@sha256%3A25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-node-manager-rhel9@sha256%3A70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel9@sha256%3Ad8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9@sha256%3A78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Ae53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3Afaff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593944"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel9@sha256%3A97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3Ae1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Ae1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3Ac502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Ae0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592467"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Ab553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3Aa0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3Adfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592986"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Abc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592748"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3Ad21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Aede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Af96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593429"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3A2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996710"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3Aa88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595455"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3Ad452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3Aa3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3Adeb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3A81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768601296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3A56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768856939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3Add01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593664"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3Ad38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768995600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel9@sha256%3A0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592324"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Ac7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ab405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel9@sha256%3Abd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-image-customization-controller-rhel9@sha256%3A1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3Ad563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3Ac92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3A1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3Adeb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768956759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768957040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3Acffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aabe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-aws-rhel9@sha256%3Aedd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-azure-rhel9@sha256%3A7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3A83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Af531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768937088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3Ac4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3Ac745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ab76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3Af89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3Ad9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769001728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-nutanix-machine-controllers-rhel9@sha256%3A63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3Af7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3Ae1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3Ae4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Abaec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3Ad732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9@sha256%3A6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Abe7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel9@sha256%3Ade364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-machine-controllers-rhel9@sha256%3A5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3Ac2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3Ac38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Aa99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel9@sha256%3Ae7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-rhel9@sha256%3Ae7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-rhel9-operator@sha256%3A08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-cluster-api-controllers-rhel9@sha256%3Afa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3Ac42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3Ab985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3Ab4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591266"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/volume-data-source-validator-rhel9@sha256%3A5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-problem-detector-rhel9@sha256%3Ac1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591903"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3Aa0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-rhel9@sha256%3Aca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592244"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel9@sha256%3Ac29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3Aee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3Af7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3Ae256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3Adccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshot-metadata-rhel9@sha256%3Ac3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3Aca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769021292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3Aa162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3Ab214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3Adfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3Ac4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-rhel9@sha256%3A673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591734"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-agent-rhel9@sha256%3Adb6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256%3A81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768994567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256%3Aeb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3Aebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3Ab784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592134"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3Aaf7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3Ace79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3Af6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3Ab96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3Ab5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3Ab8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3Af07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3Ab1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768895545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3Abfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Aaa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3Af6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3A405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768856865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3A465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3Ac29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769001826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3Aad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591477"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3Aac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595072"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3Ad9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3Acf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel9@sha256%3A6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel9@sha256%3Aa94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591332"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9@sha256%3Ac7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel9@sha256%3A12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768994301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel9@sha256%3A6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-node-manager-rhel9@sha256%3Abacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel9@sha256%3A9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9@sha256%3Ab08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3A343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593944"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel9@sha256%3A39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Accb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3Abc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Ac8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3Af257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Ae3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592467"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Ad24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3Ac254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3Ab92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592986"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Aaff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592748"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ac57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593429"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3A2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3Ad7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Aa2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996710"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595455"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3Aa4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3Ae8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3Ab179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Ae6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768601296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Ac6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768856939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3Ac5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593664"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3Aaeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768995600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Aa9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-image-customization-controller-rhel9@sha256%3Aae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3Ab22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3A4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3Ae5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768956759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768957040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Accd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3Aaa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-aws-rhel9@sha256%3A6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591441"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-azure-rhel9@sha256%3Aa157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3A64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Acadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768937088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3A583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3Af0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Aeef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3Af21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3Ad8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769001728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3Ad0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3A65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3Ad1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3Af08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3A49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3A4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3Af339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3Af412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3Ab621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_arm64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/volume-data-source-validator-rhel9@sha256%3A6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592200"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3Aaa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3Aad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3Ad6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3Aa7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3Ae642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshot-metadata-rhel9@sha256%3A241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3Aa599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3Aa97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3Ae6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769021292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3Ad8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3A61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3Ae15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3Ad5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3A7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3Aceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3A8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592134"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3Ac3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3Ae817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3A289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3Ad6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3Ab90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768895545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3A40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3Aa70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3A7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768856865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Adb23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769001826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3Ae70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591477"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595072"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3Ace0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3Aeb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3Ade68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593944"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Abce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3Afc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3A0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3A7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592467"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Ae9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3Ab107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3Aaac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592986"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Aebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592748"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3Ac15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Acff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Aac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Acda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593429"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Ac96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3Abdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Adf429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996710"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3Ac3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595455"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3A2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3A061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768601296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Aefbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768856939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel9@sha256%3Ac101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592324"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ab23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel9@sha256%3A6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3Ab26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3A63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3A750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768956759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3Abc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768957040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3Ac55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3Ab29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3Aecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3A12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768937088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3A9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3Af225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3Afafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ad4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3Aab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3Abf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769001728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3Ad4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3Afa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ad800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3Ab796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3Aaa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3Ac8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Aae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3Af794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3Aa41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3Add8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/volume-data-source-validator-rhel9@sha256%3A07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592200"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3Afe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996538"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3Aed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3Abca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3Abf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9@sha256%3Ab00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9-operator@sha256%3A1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-nfs-rhel9@sha256%3A96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshot-metadata-rhel9@sha256%3A2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3Ac5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769021292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3A9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Af7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3A6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3Acc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3Afb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3Ad721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592134"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3Afbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3A1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3Afc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3Acdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3Af48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768895545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3A993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3Ae3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768856865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Af147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769001826"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3A5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591477"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595072"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3Ace823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593944"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768936894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597322"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Af352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Aaa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592467"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Abaad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592623"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ac6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3Af35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592986"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592748"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3Af401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ab8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593429"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Af7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3Ad271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ab9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593336"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Ad0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996710"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595455"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3Aea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3A17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768601296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Ac4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768856939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3A4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593664"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3A3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768995600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Af7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3Ae7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3Aa5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3A37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768956759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768957040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3Ac7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3Ada0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3A7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3Af1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Ac0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768937088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3Aabc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Add5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769001728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3Ae1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3A0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3Af696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9@sha256%3A5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768591490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Aca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel9@sha256%3Add603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-machine-controllers-rhel9@sha256%3A225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3Abdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3A68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768996702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768597275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3Accfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768593468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ae96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768594546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3Ab735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768595402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592602"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/volume-data-source-validator-rhel9@sha256%3A13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768592200"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
}
]
},
"vulnerabilities": [
{
"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.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_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 OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_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-01-27T14:30:57+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:c9bae4933c711d664e15da5b98e6e057fda51697aef4f3ec8e932922aa969373\n\n (For s390x architecture)\n The image digest is sha256:24efd2a05ad0aaff7f303ec7aceef23fbf2495c5bb122a2a177d69d51a18376a\n\n (For ppc64le architecture)\n The image digest is sha256:aa79662c0220879c8cde3314199265de32d0b6c420377f7ba9ed322f4657ce1c\n\n (For aarch64 architecture)\n The image digest is sha256:be52c63b0a81cb4a29f40f1a4554e6f11874d929d5c1a5f6f5fbcb3869525bf2\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1000"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_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 OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:6d495c93b114a31ddab346485c85ec26c2e168f5175a436fe98ec412295425f9_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
}
]
}
RHSA-2026:1517
Vulnerability from csaf_redhat - Published: 2026-01-28 22:40 - Updated: 2026-06-14 15:10A 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.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le | — |
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.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le | — |
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.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le | — |
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.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le | — |
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.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le | — |
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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Updated images are now available for Red Hat Advanced Cluster Security\n(RHACS), which typically include new features, bug fixes, and/or\nsecurity patches.",
"title": "Topic"
},
{
"category": "general",
"text": "See the release notes (link in the references section) for a\ndescription of the fixes and enhancements in this particular release.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:1517",
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
},
{
"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-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"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.8/html-single/release_notes/index#about-this-release-488_release-notes-48",
"url": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.8/html-single/release_notes/index#about-this-release-488_release-notes-48"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_1517.json"
}
],
"title": "Red Hat Security Advisory: RHACS 4.8.8 security and bug fix update",
"tracking": {
"current_release_date": "2026-06-14T15:10:10+00:00",
"generator": {
"date": "2026-06-14T15:10:10+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:1517",
"initial_release_date": "2026-01-28T22:40:02+00:00",
"revision_history": [
{
"date": "2026-01-28T22:40:02+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-03-30T14:36:39+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:10:10+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product": {
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:advanced_cluster_security:4.8::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Security for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3Aca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769010086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3Af23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-operator-bundle@sha256%3Ab22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Ad353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Ac7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Aeb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3Aeaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769010086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3Affc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Acfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Ab60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Ad480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3Ac69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Ae7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3Adb0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769010086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Afe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Af5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Ae292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Adeea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3Aec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Af7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769010086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Af96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Adcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Acc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Ad5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769125501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769615659"
}
}
}
],
"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:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
}
]
},
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
},
"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-01-28T22:40:02+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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-01-28T22:40:02+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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-01-28T22:40:02+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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-01-28T22:40:02+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
},
"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-01-28T22:40:02+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
},
"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-01-28T22:40:02+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
},
"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-01-28T22:40:02+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
},
"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-01-28T22:40:02+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le"
]
},
"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-01-28T22:40:02+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
},
{
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"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.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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-01-28T22:40:02+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
}
]
}
RHSA-2026:1552
Vulnerability from csaf_redhat - Published: 2026-02-04 10:50 - Updated: 2026-06-14 15:10A 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.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x | — |
Workaround
|
A request smuggling flaw was found in the Eventlet PyPI library. The Eventlet WSGI parser is vulnerable to HTTP Request Smuggling due to improper handling of HTTP trailer sections. This vulnerability allows attackers to bypass front-end security controls, launch targeted attacks against active site users, and poison web caches.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_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 OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x | — |
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.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.19.23 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.19.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.19.23. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:1538\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/\n\nSecurity Fix(es):\n\n* qs: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n* github.com/sirupsen/logrus: github.com/sirupsen/logrus: Denial-of-Service due to large single-line payload (CVE-2025-65637)\n* golang: archive/tar: Unbounded allocation when parsing GNU sparse map (CVE-2025-58183)\n* python-eventlet: Eventlet HTTP request smuggling (CVE-2025-58068)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"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:1552",
"url": "https://access.redhat.com/errata/RHSA-2026:1552"
},
{
"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-58068",
"url": "https://access.redhat.com/security/cve/CVE-2025-58068"
},
{
"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-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_1552.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.19.23 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-14T15:10:12+00:00",
"generator": {
"date": "2026-06-14T15:10:12+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:1552",
"initial_release_date": "2026-02-04T10:50:17+00:00",
"revision_history": [
{
"date": "2026-02-04T10:50:17+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-04T10:51:03+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:10:12+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.19",
"product": {
"name": "Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.19::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3Ad6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-rhel9@sha256%3A7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel9@sha256%3Ae28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610347"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3Ab9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3Af985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610510"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9@sha256%3Ac6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607254"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9-operator@sha256%3A502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768625371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-nfs-rhel9@sha256%3A639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3Acb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769439453"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3A22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ad68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3A972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3Ac1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3A5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3Ad543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-rhel9@sha256%3Aee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769082432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-agent-rhel9@sha256%3Ad001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769082295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256%3A4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769158293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256%3Ae7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3Aef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3A648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607834"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3A0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768929655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768998334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3Ae25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3Abd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3Ad07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3A6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610739"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3A881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3Aa84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3Af1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3A243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3Ad817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610254"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3Ab1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769124707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3Ac7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3A633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3Af2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3Af06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3Aafb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611166"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3Aca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel9@sha256%3A4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606669"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel9@sha256%3Ad2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9@sha256%3Ac2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel9@sha256%3Afc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607194"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel9@sha256%3A1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-node-manager-rhel9@sha256%3A92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel9@sha256%3A653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9@sha256%3Aae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606948"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Aecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3A6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel9@sha256%3Aa8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769418091"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Aa0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3Afd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Ae878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3A7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768969876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3Aae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3Ad6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ab06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Abeeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607529"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Aea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Aba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ac7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3Ae7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608519"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3Aab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3Aa5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3A78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Ac26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3Aa16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3Afd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3Accad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel9@sha256%3A493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Aed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ab774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel9@sha256%3Aca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-image-customization-controller-rhel9@sha256%3A4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3Ac3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3A8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769213746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769210295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3Acfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aa0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3Ad4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-aws-rhel9@sha256%3A90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-azure-rhel9@sha256%3Ac450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3Aa93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3Aeb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3A21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3Ada669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769227357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3Acbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Aeaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3Aec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608908"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3Ae6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769406488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-nutanix-machine-controllers-rhel9@sha256%3Afebac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3Afd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769209936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3Ac34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Affae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Af0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9@sha256%3A6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel9@sha256%3Ad56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-machine-controllers-rhel9@sha256%3Ab0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3A2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3A4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel9@sha256%3Aee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607021"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-rhel9@sha256%3Aee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607021"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-rhel9-operator@sha256%3A20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-cloud-controller-manager-rhel9@sha256%3Ad01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-cluster-api-controllers-rhel9@sha256%3Acf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606948"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ad708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3Acc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3Abd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607004"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-problem-detector-rhel9@sha256%3Afb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606608"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3Ab4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3Abeeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3Ae287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-rhel9@sha256%3A5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel9@sha256%3A1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3Ac1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3Ad0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610347"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3Ab8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3Ad813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3Abc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610510"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3Aa2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769439453"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3Af39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3A0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3A689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3Aca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-rhel9@sha256%3Afae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769082432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-agent-rhel9@sha256%3Ac5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769082295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256%3A34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769158293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256%3A22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606964"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3Ad67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3A26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607834"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3A00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768929655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3Ab37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768998334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3Ae53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3Ad8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3Aced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3Af476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3Ac944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3A1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610739"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Abcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3Ad7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3A42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Ae5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3Aaefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610254"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3Abb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769124707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3Acecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3A7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3Af0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3Ac72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611166"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel9@sha256%3Afed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606669"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel9@sha256%3Aeedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9@sha256%3Ad5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel9@sha256%3Acd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607194"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel9@sha256%3A407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-node-manager-rhel9@sha256%3Aaeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel9@sha256%3A4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606769"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9@sha256%3Ad98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606948"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3A129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel9@sha256%3A86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769418091"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Ab91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3Ac19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Af348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Afbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768969876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3Ab98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ab57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3Ad727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ae3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Adfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607529"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ab4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Afbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ad0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608519"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3A1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3Ad62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3A086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Ad0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3Ad2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3Afd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Ac501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-image-customization-controller-rhel9@sha256%3Aa599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3Aaee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3A53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3A438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769213746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3Afda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769210295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3Aa545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3Aa73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3Ace8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-aws-rhel9@sha256%3A397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-azure-rhel9@sha256%3A5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3Aa3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3Ae81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3A9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3A8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769227357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3Af6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3Ac6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608908"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3Aae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3Abc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769406488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769209936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3A78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3Adb38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3Ad74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3Af5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3A701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Aae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3Ad084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3Aac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Aa0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3Ab3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607302"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3Ace0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3Ac480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3Aa5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610347"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3Ae72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3Af4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3Acacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610510"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9@sha256%3A6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607254"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9-operator@sha256%3Aeafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768625371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-nfs-rhel9@sha256%3A14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3Ad530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3Ada26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3Aef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769439453"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3A8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3A80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3Ad3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3Aae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3A58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607834"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3Afb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768929655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3Aca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768998334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3A4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3Ab5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3Affce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3A7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610739"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Ab36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3A4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Aba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3Af47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610254"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3Ae415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769124707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3Ae361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3Abd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3Ab5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611166"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3A09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769418091"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3Abf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3Aec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3A15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3A6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3A4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768969876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3Aabaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3Ac422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3Acc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607529"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3A7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3Add681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Af011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3Ad37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3Abb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608519"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3A2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Ac6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3A1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3A9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3A9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3Ac8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3A59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3Add79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769213746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769210295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3Ad74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ab08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3A35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3A025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3Ab2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769227357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3Ac6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3Aa1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608908"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769406488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3Abce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769209936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3Af1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ad99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3Aef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9@sha256%3A96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel9@sha256%3A2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-machine-controllers-rhel9@sha256%3A087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3Ac1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3A2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Af30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3Af6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3Ac290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3Aef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607302"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3A3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3Ab8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3Ae22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610347"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3Adbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083880"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3Ad41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3Af4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610510"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3Af235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3Abf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769439453"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3A1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ab93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3A66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607824"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3A4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3Ae179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607834"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3Aa1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768929655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768998334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3A52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3Ac73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3A11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610739"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3A5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3Afc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3A2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3Ab58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610254"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769124707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3Ae7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3Aca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3Aadb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3Afe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611166"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3Afb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3Ad563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ab22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769418091"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3Ae9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Acf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3A363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3A80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768969876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3Aaa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3Ac002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610882"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607529"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Aac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3Aba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Ac2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3Ad5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3Af5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3Ad00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608519"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3A778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3Ac0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Abeed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Ae89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768860695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel9@sha256%3Adef529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Abb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609270"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel9@sha256%3Acec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3Adaa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3A005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768606589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3A7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3Ad298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769213746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3Aea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769210295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3Acaf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Ae9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610966"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3A61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769227357"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608908"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3Afa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769406488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3Ad494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769209936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3Ac9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610952"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768611059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3Ab2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Addd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3A48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768609078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769417822"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3Ae69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Aa80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769083969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3Aa56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768612484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768608634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768610912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3Acc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1768607302"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
}
]
},
"vulnerabilities": [
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_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 Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_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-04T10:50:17+00:00",
"details": "For OpenShift Container Platform 4.19 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:7bf7c5dabc70518b89130ff7cfe62d14a61ed800adb418359bd9dcaa17b50206\n\n (For s390x architecture)\n The image digest is sha256:7b2eb7420e10ac8d5e1e5698393235bcad236172c49e688dff2ee651668caf29\n\n (For ppc64le architecture)\n The image digest is sha256:7213776b521925f53a6a2dfac72adb9a6f9df9710dd39c8847bd6ef211aad63c\n\n (For aarch64 architecture)\n The image digest is sha256:369335090d5f4f5b4853e22c750ef7749ae18320be610d50f7314bb917e2b617\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1552"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-58068",
"cwe": {
"id": "CWE-444",
"name": "Inconsistent Interpretation of HTTP Requests (\u0027HTTP Request/Response Smuggling\u0027)"
},
"discovery_date": "2025-08-29T22:00:44.749956+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2391958"
}
],
"notes": [
{
"category": "description",
"text": "A request smuggling flaw was found in the Eventlet PyPI library. The Eventlet WSGI parser is vulnerable to HTTP Request Smuggling due to improper handling of HTTP trailer sections. This vulnerability allows attackers to bypass front-end security controls, launch targeted attacks against active site users, and poison web caches.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python-eventlet: Eventlet HTTP request smuggling",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-58068"
},
{
"category": "external",
"summary": "RHBZ#2391958",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2391958"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-58068",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58068"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-58068",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-58068"
},
{
"category": "external",
"summary": "https://github.com/eventlet/eventlet/commit/0bfebd1117d392559e25b4bfbfcc941754de88fb",
"url": "https://github.com/eventlet/eventlet/commit/0bfebd1117d392559e25b4bfbfcc941754de88fb"
},
{
"category": "external",
"summary": "https://github.com/eventlet/eventlet/pull/1062",
"url": "https://github.com/eventlet/eventlet/pull/1062"
},
{
"category": "external",
"summary": "https://github.com/eventlet/eventlet/security/advisories/GHSA-hw6f-rjfj-j7j7",
"url": "https://github.com/eventlet/eventlet/security/advisories/GHSA-hw6f-rjfj-j7j7"
}
],
"release_date": "2025-08-29T21:12:24.534000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-04T10:50:17+00:00",
"details": "For OpenShift Container Platform 4.19 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:7bf7c5dabc70518b89130ff7cfe62d14a61ed800adb418359bd9dcaa17b50206\n\n (For s390x architecture)\n The image digest is sha256:7b2eb7420e10ac8d5e1e5698393235bcad236172c49e688dff2ee651668caf29\n\n (For ppc64le architecture)\n The image digest is sha256:7213776b521925f53a6a2dfac72adb9a6f9df9710dd39c8847bd6ef211aad63c\n\n (For aarch64 architecture)\n The image digest is sha256:369335090d5f4f5b4853e22c750ef7749ae18320be610d50f7314bb917e2b617\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1552"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "python-eventlet: Eventlet HTTP request smuggling"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_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 OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_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-04T10:50:17+00:00",
"details": "For OpenShift Container Platform 4.19 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:7bf7c5dabc70518b89130ff7cfe62d14a61ed800adb418359bd9dcaa17b50206\n\n (For s390x architecture)\n The image digest is sha256:7b2eb7420e10ac8d5e1e5698393235bcad236172c49e688dff2ee651668caf29\n\n (For ppc64le architecture)\n The image digest is sha256:7213776b521925f53a6a2dfac72adb9a6f9df9710dd39c8847bd6ef211aad63c\n\n (For aarch64 architecture)\n The image digest is sha256:369335090d5f4f5b4853e22c750ef7749ae18320be610d50f7314bb917e2b617\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1552"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
}
],
"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.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
},
"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-04T10:50:17+00:00",
"details": "For OpenShift Container Platform 4.19 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:7bf7c5dabc70518b89130ff7cfe62d14a61ed800adb418359bd9dcaa17b50206\n\n (For s390x architecture)\n The image digest is sha256:7b2eb7420e10ac8d5e1e5698393235bcad236172c49e688dff2ee651668caf29\n\n (For ppc64le architecture)\n The image digest is sha256:7213776b521925f53a6a2dfac72adb9a6f9df9710dd39c8847bd6ef211aad63c\n\n (For aarch64 architecture)\n The image digest is sha256:369335090d5f4f5b4853e22c750ef7749ae18320be610d50f7314bb917e2b617\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1552"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:3342e71e34ccbfc89109ce1c2da32e0c48752e2a19068764429488565e49ce04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:beeb5580052b57f65f4528987fa21f12447a52a5db35f765920f23aff17e486a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:ce0dfcca1dd6b843b75e647aa381fdc0f4118971f24b901ad867ee92d69153a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:d6e8745266e29e4b2b951494ec60e4c1d7f61c6f17a4a8437ebbe9c7bfa7f3c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:6bcbf7a305c20975af1640b5d230e6d3cc7aab9916c950917784363db745e127_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:b8f25c2a48b4e546b89284e51dc3f3112d090633d5c2cae53477c36568e77fa4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c480343e01e07f7397a6804cec053f0d9198b87c8bdea13d650d79a1658b360c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:e287cab1cbc33589f78282e82a459e42fc0d561a07c692862e4b85aecc949f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:1e6230de12a43c5ee8cf5ac79657fecefb6ebb88d461ff37703024399e7835d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:87d7d405f0791eadd0c3ea6e04c51866e2c10a63774007360e09b4377b97dd31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9141776d06d746609a60b99a15cc09f0d8c4dffb933452d8ff53d8d02f727ed8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:e22ee74efa66de0812f93542ce8f55538cd4cfc5a78652c752d6ede249151748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:09e373c4dd0dd2f1bbf02ca3e40ac4252189e3b9161873a4a9dc56c86c39b9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:129996b426e156447bb3835d527548e9029bf73608ce0de6d86af0b8ae0779e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6bbb9be6178469a4770345d0731db2f8a2be687c79fbda51f79ce106ed69307d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d563a05b4b0d8ad3715acbe625544c9c15fc65790ee436986d00cb830182855e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0b832bc33a20f269f870b984d88580f61f88e2a300e924cbb664b71b4d8f5fdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:16f6d2f09ee0c96fe6e5090b8af4ff39e68890930980b06408900384f94be052_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6a62440861587d81c85b06178f7103101c928966eacda60b5127562040bd1024_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:fd9772c2534bb6804a375dcfb917ede038f3a8efe503a8c6a30b4cbb1f87779a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:1b0d9de80345e9689862a1fc07622143d1d353102849c0614fef12aabcde7146_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2eb91fa7a57db0aab2a7c8750209e16a0f1760be6e8d54de77f67b206a2534b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7833dfda0e928a543641c300d1f3e34e3959b6c8735672a9b48d79cc6f7da7f5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f4d9fb89168484b7b46c03d1df30753d745200206d7a536b0ca8e1008e38e924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:714ef73f2bda6c314516a90eb10b03d9625d3324a2c2542d7fe59c422ed17950_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4d40bd877cf166cb56f663447ab8ff5bc623f13396b6b36c8b6d82aa3aca44_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb1cadd341bc1797818a1f9405afa606c60fe9029916dca92b44fe49cdb3c29f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ef7a1ddc06a88addd5d2aa61c27d79f6b405f74875546c748df44962d1c1ecb1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f2f2c9eb8e08a21d6cea95b682665ee39ecd252b1282186da3d31bd6c32ee27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:22cc01a0ca6e24c68598871ee1b0265489eb10183003f374870a0d4f06d51ce6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8657f8ff8f73a08828a67c038e8da03afd900ba938c696bc5b4c858a959b0a18_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f39b0e1e4dce28aefdf99b8613c4744ecb14320060f5334b3530f455ee5ce7de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:1d0f91bace6b2a025314f9acfc447190ac771dbf1df669e62618eeb3ec033a66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:c26a6980f772c672ad8e285675f99e114af0a5c66b7253ce715c92ab2bdcd78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d0da343878783b1f15de460fb7f2002c1c924e11a6d6a0623a05dfd40a155fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e89294a53eb231f6e5f8f01d6b220ebf7595a0d2541e8888b0d4a22adf53219f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:005c2d231554c6904c25ae2585722b4031813b0dceee278846309d45df0e72e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:53f441a84f1d8dd72bfcfe92800d8a7d66cadb998b37819351972994875db0e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c3e8d1c18584792480ce9299f0cd96f93d4957bc98e8af8ca962493fb6313f7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c8e62fb8f46429907a6cf31892ea48e04def676a7d1804b15eaf4b0c81cb7934_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:438dcb767bd4c6249088e2e8e5780079c1ccedb33bfe6ed1022e59f02e41458f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:59c729c4d3309f3ec75ac20264bc87c6d81f398edd1896cb90e127fcf8e4e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7c72de923953dedd6a2e59676e3f827c174872d192ac2f5959d29e3af6d153c9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8dc0f68d456283d84a3e4f075dbd98c3e4a761f20717046c61b3a1ca62615a1e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3d5da32f2aeff8453b566e13771927e03ff5cee7a11e429d25ddcdffdf9f6a5e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:98742cda653e8c613015be9639d8a8d7865699cae043dde76918a7ac12365f4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a545da082580c795b09e8822d037ebaf8da98209df30edb843797207432c1ad1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cfac5d2754467e85f9d3a9c80f034292930e11903974ceee5a4e2f08d87f5d91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0db4b13822bae4d478a6ee7dfcd19d8c3fd6becd9515af09a322ad864672a97a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:232c348513095d264658ffae4450cc8ffb1319f705a3fcd6167dbc7616867a6f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:88b8fd0cde666f9e3e1a2fec38ff5b510d29c1a0dc9d369725a7a57468e4b8c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a73736a4115757ecc79768667a7b143ef0c723c8bca72b5923fa7f756dd76efc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:5540ef6c7d516ea7e5507b65ba2195243d07fb57e6decc31eab2e4c0ec2c3dce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:bc9d3ea98fbedada62463b2ccdbe087185cc21d8ad2ca36a9c4055c34ec7828c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:e6457ea90a2e18920670314fc368a078b073b51de30ec87ea98d8d49b739c95f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fa16bdd3471190f5aeda2446ade22a99951fbb019580bcb47c13eb7192f001e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08d0c8a1c19b87d01b7a1510d2b8e828c466dcb71d8581b3c89c2d84e3a24eb2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:270950e002c9a01da01d4bb65395a8a47b35f8835f263e9927f2bfd3b12ad7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4d898959fa89d8f211b00fde5c4def1f38c43546e024df54f7c14fe91b5c6cd0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f476c8d9d6b48c511b1cee187c259d39e79de06802fff7a008b5d2a96b031d9a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:376921ac14a49712ca8658d9d081ad1c52fbfbaaeb571cf825adc660e28b5c94_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:89ec287433d8edeaaddd3216f9f4d06d6d597531ffac69321b95bb309ee7dfb9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c1bb111c1763a296751e4f36b743605f60057ac1acc93ed214faaa673c5effe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:f5453b3c4f55b650c7b2b1ceaf1f89774cf84bd813746968b1494bcfc767ba76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:633eef299c1e9bd81d19be94d1b32aedbd82be4c01197a22cb20810ebc7bf8d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a82900eb1aaaafa1a500b8ea99df16fd2e497c01431382ce13804d9b3d78396_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e361d20d213c7c17a9ba9bc6980a2e60facc9c4714df7ab9835cecefa0af6651_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e7d67c760eabb333b3175a7bc67769333b1ad17799065d2f3b0524729cb1a1ae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:964210d3451f206e5628e89624251cef3bd49de754660b7f70faed154c986fba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:adb3e9a424595e6b34cce70fcdecabb522250803afae5fa18f9bde77aa32f2e3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:bd42bcf61fa5aec48ccfd9a5fdca95cd112418b5cf84aa01bef3deeaffc73334_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c72392db0c4c1a91e59e333f67de6868bc25ff016a68c39293d57b77fe757832_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:625f8fd9540f8655771c331465e212436e0291af2f030c2724c56ae648f0ad4c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:6691c9dd25f596cc4d24079d69ce24882435bea0639e34b9257e00f19141fdde_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f06b4d1bd9e64d8d6d08b65351b962fc8bd178629820bcb3d9cba5f10e5f6f5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:fe35f0a947dc88e4a7cbbd69ffcaa6dafec6e74c6141ca5f4877927b8b3d0ba4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:40226a53068766a9901136e0862839579f1b8e464ed2459bec1d97fe024fae37_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8712c21eabaea169bbb8f83083921a18ad0ef0ebf20ee4d23290fd664cd083b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:afb529fd1d7f04cd1cd1a3a5ed5652dd9179cb8eac0e7f337c6c6161012d67cb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5be84b7e5e3944c5b84c7ffa7aafb88d21eb9e980c45baae0666078263800c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:253da744d576b21b339b9b726bb2e238a078dd0cb566c6100a7bc66d4b74147a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:262fa34cc3bb7c1e5c2c8fc80889a2ada0263a62b08e58e7b97b13ee27654a8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7693d045f4a38a348820b0846529b468933a63b2397b631c5a306e7676afaeed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8ecc3e634fe572ffbc4339ce125c161e7fdd70b43702e8ca42c33b1ccdec2556_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:1d43fc8df6d0bee13e7dee858d6383184bd32e95253f49f3128f546f6e84f24b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57bde20b3b989f99dbe9aa0be49fc762ca2c0d5dcb04f0850c7ef5193b15bff7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:68ec11f6e1dc6a0253f1e16e488e622806e80bc4cfec50afbe56b0f7e7f3aad9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ca670f3c57e2f3c34be9be2834e1b60d04c701fca73223e7c63fbbc14810e0c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:07ba8d28bf2dc54c996ae91b0d73eabf0cc6ff14e8e66a3cb5f2150386877edd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:613e9b343162caf78b4a6cc054713c36dbf350737d332cd6d348c92967a5c8d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:68a2ca68cc4e598e50e10eee42d00351999a52600f6ed0a25d1a49bc890d9c07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fb24df6a865814809478daa66567a7d14384483d73fead3b1e8ee6dba551d051_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:4125a8758a80943c52efa4753e35ba699a3150739927d8b61c0c275b38752b82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fed32609cb1a341a106a8072e2ccbc7a478e3d9e1cb193f3aeb201f9b27ea3cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:d2424866d56db983de337ff0c1e7e8d9ccac9cc6593567b335fb4f35b42979f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:eedac1c4efdfb3e36754135611911efb33006e026da2b8b94cd33a725f4a3658_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:148fdbdc77b4b0111a95f54ce11e96ec99b2bf424e53763fff28a84274b55323_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:90d750557ce50846cca415fddad97c44f7924ffe44e823b130e5c51c77f41f77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c2eacce0d620365bec9c30b874f6680bb0126c08c9fa7f27f53bbe3fb1d96ddf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:d5ef35e2ae3652f7d121de1981f1a40bf2bbe0513ae0ef8572bd5b3cf0a8b4ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:cd879e09bf60f1d88b3e78719134635d4f723903d1107f47a4e30390f288bf59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fc34ea76bc332857453477f16e2bf10717885b6765375111396965e4765f57e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:1a97dda7bd41dfc630d8ffe93f8d2c673fae97f12d83f5f51ad6bde7239384bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:407204f4e20d37ca7a9d0f5c2e466e6071147a4070c0fb14deab588530046c28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:92cd2d0947204180335ec5824610ad50620cd91d790afcd9087f5ea46a7dfa5f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:aeab2d0850405d6a20690440d1a966f1317725fb081d6698b9b0d5398d44d3c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:4a5dd19e322d17724741023a204ecebf4c61483e1e9e87ba858e830cb607514d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:653fcef2756c93a88201dd82e9186004d4ac365daed16fcde6ad906d93989523_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:99f6ba7db6bbcf6ad4788ab121a839b4582ec85790ea6fe751b7258e68d709ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ecfbf1805a3038b5347a341d6ecda038f5779f2ede4843d34ad31be27dd2875c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:ae514dcd3c21331e041cd736ba590e57ba5438de2fd8f108d8348fbb668317cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d98ab1a3c7135d78d019a79da28671e9dba4454169454a5433d52bb095dfec2e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:1d22a2834d8b35aeab10f4b2e9516811ba50ea397f0390b6996f666c481746db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:e28b20639a70a3f0604c4ee14c9c5528d0f8ba08f2ec502da95a9010d781fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:5682741a2355b1a6dfab3be6946a4010dcd46b90feafef4e38d978ae2e0dba29_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7348326ce76e01831da1b71eac6e9abd1fccd5a00f489d6c8994d19ec9c4815e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:86176099ba727723bba8a2edd6034b91b5ac97a65dc7985d2e17c0b136ba6744_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a8d230874907c29dd6aa3456c5187ed93766826c3d55e5f594b13364a85893f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:0a47f3eff0142357cda45259fd9f28fbad2ed0ce597b7828130e6d263d468f7f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5619b68fbbb4dc005295828ad1ec905b90c516d55efad720f0a6badd3cc19af2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7e325864985799e0067ee3293093e944abc8fd1046ccef6a43bc1c8f832f09b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b22ece5a0062f1a5d17af1a8045bac66fc0424460feaed1e9ec96e9b0aa957a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1c13c549bcf670bb097cb5522bcae3c6424cb3a59f90a07ee80ae1a2854a834f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:60204a77cb3996e8196bbaf6422bb6bbe5487cc95b8df7e87c3a550cf23ddbf4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:85f353a7a60fb0a421e09e7a0f1ad7163a39b7184d5bd2d329d897e2f5baaa41_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8f8419d52b0052a04e95c399515f231336b70e62b0cd3b0a251459b3830da021_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44f933caad12e8a23ce4435441685368357c8b5da839b91024513c7d5535ed36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6e7fa8973cc54084b75fbcad60632a771df084c9296071b0f8dcc8e152ecc4b7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9cbe4db316ffced1868a2118c4c372ef02a62b454d1c415caf0925eff20f653c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:c1cace098fa0806c8b9b35114057fdb2e3ed411d83f2055126b5a370cb0d5f97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2be5fc82e59205027c18ec292732944b94795e8eb0274d326cfcb0435bc6d8f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:580216f0d370535fff566283b1a046c227a10d1fb27841942029f3ad8517e6aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:657dd57cfdd21f1484b0b6bc0ca965921ebd812aa285f74cad8dc4a26c641abf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:bf55a6cc0583c1f767fabe960b27653abc3cf89438d1a7e3a102fbfe50098202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:157ab61044c4b8155bc853fae23cefc576ea1e6d6c99c6f36a906e694ca63e77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:33deb0e94a145f93c2e9813f6d20a8a3cf9143cf62521d23b3eb0cf80b22afe5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:3d15a5512fd3c67e8f4f823262f8db1d209222842e74e424210428651a5e3f9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:d0b7cd0690c496eaef17e23662e7a67e72bd276959d78ddb01f44f798616bb19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:442eadaa9897ca71bbe6ef3752947aa61343ce1281ffbc24f29c523cbd303a23_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:62c44160cf81533bb0d496e66aa29fc486b20f3cb1cd34f370d18aaaab4276df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:e9b589739429731b84c9fc84f5a4d0e172f7ccac0fb8910ab9090f0291375765_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:ec675105eec211e3200c06d1311f96ffb81fa169aa2152ec470d75cc3cc8aae0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:11da36d4993351f9f351c801887a8624c87c9b56ef4be9e44ef83572c5608480_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1628493bc33757372821c1321b30263e5ead4a12382c06d685244c33afd6f58b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:6918c652b39ccd6a020e558f642f4904189fe4e9b8849c33e112df050c6ab374_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:7ce6254e9b7279d3a9b6b388de771ba4eb2eaa9c998aae075ddadd0f235a7b82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:15de7ddf14b2a67582eb6ebdcdb17cbd5a9490106b586b224e09e155cda01d6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:a0385922bad11d37b83e13fc4cc22beece1485eb68627f387aac72fdcbc024c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b91e4e2ac57a8aa49bf86c9788a0f2ace98219b48688687e85c16b866158d7d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cf5f23f50761d5f59ebfa22a17a9305e35e7cefef2f9633f5657bda0cb56681c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:32fd5e517cb6c972e8709b8dc6ada923eea16cea57de5d8f22010fdf199b20ea_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:34d569238f88262565e2c1a3b624f5a74e654580a560456d9b5a2033f031f79d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:4f52c409c78f4a1728a8a1cf6fc2d7903d1c7e5955ec4d6036e20c7e00210963_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c19c5f52f406203efb7d6bfe20c2df09f6987ef625a38c25f5e8133ced28e182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:363672c156671c17f358a8291649266e9eb3073c7ff74ab3fc6e37ebf064046b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6003a216612c21019dac6648c3ec31c1b75f5fe654267d824261c319968a6ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e878b7658ed38f939f448831808161c16f8353f6c407256141f20efa0570bd51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f348293f10da2a8561526943d4aa0aefee1d043206ccb5b901431720180bd517_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4bad6ad071f38ea729d5b996b4fcbc7c5c394d1bd92f1859d095e8ef63b68fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7d1fe381ef0a6e139e2cf88f0dc549a428e3bcd8aa42f973c8be39f24fe393ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:80c56b824a64d3c5cb4e57da6e47657571487f0dda661e458a874fd408bee95f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fbe171233a70d9fe1dca7a7f307d0a7f17cddfa0930f6482f0ac4b7626225596_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:11778fa02cd308c157c9b8b4c84e518770332ff26f20fe31639b40dde8b12cd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:61e5b06233eb295991d69a820407de3eb716edc9982a606bedbc42f879cfabb8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:66bd503bd3f8123958ea152023f66d7dc2f5f36a5dc3b7690ecaa30082e06732_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b4c682b6333431edcb963c71cccb1e21bb59dc52851e68fb754cd50cfd5288ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3d83acd932f332f0b89224df88a21768f5ce41123c0b3a3337ac4f7bc1e68748_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5a3121424a1dcca63757b1e6fbe0edddcb48c3adaae01c593e7efe2e00059599_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:9057d4ac26896d1c5edb39849560c8a8c0ee9138514f44594cba42903fa47f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ae9f45efee50406fe7c265f4903bdc17c7c41e35a2c1e383ec677e3b0379d0c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0bd2d1caf08800ef19f72279cc6fe1ffc629e1fb4414d7bb9720be54ae9d0423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4eb943bd629e70568bad586f36dd432cdb40cdd4c2413c6e157172cf3e3304b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8aab96ff4ec1b04a4338e1c697fea154d59075bf53fdd8c670bb44fc19748182_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d6e0fd1a6fe31dff8bbdc6d6959e201c3af18017963ded18c80ec7fd45b951e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c139ccaf26774cb99a97597763297db1584524240dc49af743af55618867fe6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f284880e189bf2920d3030a6ede9c994d552bd72062b76341c7901f8926c16f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:aa2a768e2bf1349d8e645f6007a583f529bc6fc1992299a7cc9371287c511ac1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b98091348fd4f4d093b460f6e7ee5ef2cb829cf29006c9b527eda94ed824bfd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:84fdaa3555e3d3b1ca5afe36e3561499a8691cf7d63c7e9403e501297bb95f83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:881d1d92aff5950a081761b721116debfb70885e872648983e84d8783cb4b160_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:985da58ec4980f3c95a2254fd015e27df34fb591d5f65b8b679cdb092dd00129_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:b57971d4a245ba50b648a58f41ba6e8cee3fc0a090fd115feb1d781772d9133d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5b410af13bdb05e8331ee046dd51b17ae4aa8264f7386e193ab17e51501b37fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7661bbfa6f857c47d67870b752a54077288ce3a4756723cf932879dd76d49d5a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abaa12d0cec4aa48e9187bc0a7299262ec5d425d252e22267fd96dccb0012268_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d727afc51c1a3f4b01f56e55b2bfd17916579bc0614089362ba5b40344fcdcb3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8bbd60c9b4397add45e2f5e9a70a06cd9b0376ac0c566160a147a4f89bf02641_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:97cf783bcfcb1e58343ddd0a6c3c7a7197f170ba4838be04106c60ce52d442f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c002cb30e5f52699d0b104a409844f953745b8ddf5a9b8a477cc3567f9597763_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c422d06817a78b52da48115e982fa11c894207c50d6147c6e032159f5232ea91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:63fe79e01d05195a2aa0d16c35e478ea54e936e15b3084e456a810cc7f1d66bf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:815cb88c78000225fc4742492092c2919ce65e655b6dc368588216486548c148_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b06340f1081f095045b396dbd5304cdba1403abe98a1cc07bc4286354f29e872_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e3539b135fcd99503c7908e63df26032bcecaf5d631f957af20772e244f14e0a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:04a63a5acd7f31e475531e24b6b39f91db0822f324f519757ce8e9cc585525d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2162aaeab8990e7cafb02fdd0338c957ff0e410d9e40d079eac6e57a899cfb9e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:43aa2fa58c9df92c8ad3bd3fa33d05f9acaa72cb9ca4a4c6546b82ab0dc74202_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:9531146182183e555d2fbb1c04bac9790c4ed9c11a8021e4fcd1a3783cef7feb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:23a864a6fb79e92c081e7074fa72e14c85b9fa49fd1adf5c221d85fbd6f38e79_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3da00d2573be2285af8e8c029d7361f20cdea816b510ea9a37bac45faa5cbab8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:6a6fdbdd09fe18d65f6507e1a9a9bbfb305414c094caa6e894bf0d3a82c75e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:cc35623e02a307ec8e1be5a7bf4e3fffe3e8db4491de7391c43999a52ac2734d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:27e237e11add1b96b55a7cbde685fbde3a41039009bfcdb45b0399e39e3213d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:69284868ed6640f8c7a80cadf48038f17ad0f775251303b07dd1f4a426fa1fde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8a1fe8ba48924f073930d017b9e3f9c7e4602db576db3cda51c41e44ca836cc5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a5daf8a9252783aa11041c4f37cf0aac9e0138f38e66d60878780f1a077db32c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0abba7c419408e4ff6dc1eab81ff588f0f23477e2401bd00c4ad8c781ca00766_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1eb32713f284b7e71446e88b226cd6621035c72487b753d93de0f89fb61f89a2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7b1c634b1b834e344d06f5d5ee8fbd7deffde66de3de07a8f830353c0a9d4f77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:91ad966a465466a55a82c53dd20aee80b59e7bec4e01d6300c55520d9cc67331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:0c7a1332355cfa17cd97a6c8b274ba67ed6a42fc961303e2bd023703f92f8105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3f4599914d190b38f7f64a4b2ab8f4cff7e79b1d6c6e52e565c762e70fb152bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c39d98f639e3f1539e51e5de7b5c224c4e400f5ec48d5e002fec16e9c2b90b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8203fe1f5bb02c5d5f271f246bd28229d746415a723ff521ebc56a7f4e26cc0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:29835c9adfeb1250ed8ce730a5f044def00652219c2697dd5c8ffd62872214c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:93a9d247ec7dc6a5d42f7b57f040365442c039a2629eed45d39cdb71fd0f2867_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:beeb36bc9233e3d7699b24d5887f768b2582eb8d46f3e5836e1ba075ea053f06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dfd5c6629c7cd531213222371dbb932cbc05124545d4b6ee2f6d2195306524bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:19dc737f82714aed52be7e2502c486178e8f899c0859a986e593dbb5f51135f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1b8762fa0d6046f0b008e82635afcca6a7b4140873dff5512e3dc1c0f964c57d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:421ca3f9edb24682f3a26cfebd632649996fd770fe19370cefe18e70404d9541_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:67a93ec5151e8226c00afb3b3e9dada654e5f30b65c2215dda8ccaf0ef204e5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:46db248d4e5c421ea1ecbb66c6e03f1c32096735606043ceb7b1c58dfb58bfc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:60b58a109abeecbd7606d8ecb9656b29c8e991a67904fa4e575680de0edddebf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:82286c8aa3bee3e471b0d74b4cb25367dffd821d747930c5b45a9b6586f62b22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:84e61c72c1dff19e5452c08b51a965bbcb031d57df3f848a9095f28234406986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:63e8cdae420eca90e26745b9c6e744904535c15146dc34c365fd91654ccbb55b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:77266abb2f34a409822b56a9857120227d67b1ae7846c1cad055c38c2b37d074_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:93caf967a97a01eb368e9473b7513adb4f1bc18d729d629b3bfd4d0475d1c153_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:b4e6aabdd905822df62c580153b8b31895629c518555dee73cd55a751c47d680_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:249686fa54e644b5398d97f8f0b11861c0a815381bfa4af0016d9e275c655cd6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4342d33bf7ca801b38dd610d0c4ff5d43e44849f5d7b89566ec3acbf480cae5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:69ea2e0a1fc519ea5ecd405bec6142b55e74699428a87357668c30815c3bf48c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ea0d86a93df7cf837708729a18905deb7d0971e9836bb9e09b0da2cb62828268_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:7aab81afa160a9433e850411a8b515d77e16fe26cf192e860468f5b6d11c37fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ac5ee5caa4220b922000cac74311a876aedf900af10bd74e595aef85f6e5f87f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ba125accabd8000d7060c27d0a0699ae4de7c028fd92501c8d1ab66ea86e52ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fbddf64cd8de8405ff59b6b555c1d175a99ac0b5e228dd4cb52f6844976a81a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:11775ccfb170af97c150d76e095f511888dd0c824400119b86ba661ccc982215_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6640ed63fe5d6ff07128eab38581ab7e2d8727b7d19f566eddbb479557fb9aef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:669c3fc6b267d20deea36799248c3da02e66dbc64ab4c377e3b16da4f5142fe2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8b735fa0e9f6dda288fbd1abea77059fe3ecd4f53f562d14e0c826cd90e4cab1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0c9aef998334d91c70384dbc2289752ed778a310f7834797080a6fa869c9bfd1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2b90f8b0137427817d35d84212c240abe2e38a6a1e2ed35d1e6bb8c82ae278a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a75886991390f35ed1a4090645dccdd2d79fe9ebe63c9d679ee7f3d47c6f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dbc3261413a1a1efeb60dfbf8669851076ce52b25a6802f5e63be21bfbfe8af1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3eb8c0a658d9370cfdf81498161b5f0fbc2d50299f2dea134a047eefe90adf02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:45455a4f6258363515285653edd780f417e9401cccc66f5bb82da6e5538581e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:4812c0f181d15d9701066ab057d9949b9b576444ec5e6a922c7e56fb68a73342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5657580b4cb3da9822300a79ae89d142f199e02f5fb927b2217c642c6c7a7a48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:29b33b88065fac1fd4679575927266fc37dc85d9989d3ade45d0c414c18d669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:579c54c491c8112ac0a88d32d962726f70f0468b4045166022f3c66c8ad033c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ba895accbe4047cbc7e3e89bf7bea5ca658c614ad7135760a16a72f032e90fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dd681cd18335c9bd816a0f7e9cf58c1f25f730d9185d9a655462d8b90e035e59_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:944570119fbea6a06c2a4353690c448509910a94c116db04bfa7be1e84fdd393_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c7449272f39a52b9d3973e25d552f4bf791bb1e814ad267f6db0397da60e0f0e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d0373f5622674f1cdfd6b931a25224b83891b066514c5a5fb8d2f70908dd5f87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f011874df16ea5f69e8b655b3179b9fdc92f4a4ac28e8c133c316189cce9256d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4186231eb0c2c6435df30fc34c97d45bad03586605ade51018c860f155b9f77b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a7131ce15b58f0d4006183995a223b6d8d489d030c6ea75d5a868957eb390ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:87d18a41d12314300c6bc5ae072d7423e7874da604dc1597353d98005bcd6fca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:c2cd2371ef3028069c7bd0b774c46e133f22f783ce6a98d5a94e83595ea5ad9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:4b879c58d852693d2957560bc4b8c1377dec9d997f243b748c4c0e38a787aa57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53d2e55b68cfe66e3ca955a4f4367bf65093b5b1fb01990aabca6c20b24cdb46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8e466a2cafe9311d41c55b059c18027d003f218a83e510fe8581e59609a339b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b8a694fa8b0b5886ff9e9a3f6c76e2ad56051e99e4cc457012468d187c385a2f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0827a2cb94f51e0a44f3432fef13298b16f7d9b753bc14b282a5e091a9cd8fbd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9d5787b76ddae10829f567985708d91e6edbd679613f81d6f5db4f818c2c8d12_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:bb8681e6e1df2e6801bab66f61971dd8e3df8101fc5d681ab4dd6e1dd5fee5db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5749c4dd8c2ffce18e56615ba7b1549989200d17338731e6a658594a2a41fdc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:14fc2d3bc16034252a19c6abea4223dcffdbd309d85d9fae4c145771dddf80bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:549c5bb1f4ffc2551ac78e2a8f5314c31d1792d1e9e16ed9d06e0f8723f71d2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9dd1b24252bcf6328cf8e318c5982b9e3b1bf5ee7a94da0eb8b102a2f81008cb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e72417d6f0dd22f808ef77652187229a43b470d0c9698253f44d499746f9c9ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0eab0da1a2fa19646d8138d20fbcc5be66d1036e8a9415dae2cd595271d19cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:37aa502c879047fc8f0ae1082bac8a16f07ed79c0a419cb76fc655309fc2c55a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:574b25aef836e9b0b52d7abdce3a103c5df00c888b8a957e233197a671fb0cef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7d2146c387be2d96b5f289e316b152833c2512a356a83f53c414d030fa044aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:54cb6425d937959b5891a566fdcbe6211a446727e06de2b8a64ea659e5c0aef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:9cd2400574db0e6472a229beaff748263c61b20fa6cfb63046c61ec3c9c823a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d41699472c6331bc295d860852b9f4436d7524fae62f4d3c246263bac044a7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d813cbaf923fac750712d7196ba138418736c4f84190ff1eed90daa13d02cc83_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4f413a37ae980323377a0a3a0fb7700bf0b9d3d2ec0e2293c5b817933ba8b06c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:58857f02727e962760014823e738f8fe40063353b3a19ccdfe7f8d3fd94b3b98_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:6d6422ac22579905133116656c5ceb543eb88aca6aff0671d3a4a1483576ea55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b9df78d02aa20590a4e76cb54fdc999e57771fddb9c3fde265c0b295e4aba9c8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:22fad54231e0030e6841f097c573d7fafca08026f37f22522d7110dbf90d035f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:775ed7a75f5610296a8454a8b7345988cb706db9e70353725a1f7ef51b7288ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9157bf188e8ebcdc64b402da1a50e82e7c23d57676d9107dc71b4acffc39374e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:9bc468d78c6eb76c054582aec2e0623ff9ebd2d9c988c48d5f4a3eced8e681da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:16bea88f685140d4bb003a74f65c74ee53bf51fae7fabb6708edbbd2cb866c45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:48f8b9851a77e2bc7fa1c71bbd8451880e747f06ce03cbd8e297f523628890bd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:7c8b76d512aefc60361b65d1540915c0cf7c94b6f281f666b9e2b1c8e3caa364_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9cadee7736ed6b393b6bafa77d26c48e9a467dd630aeae0e9f955c2ff01570d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1c1fb1f15692ea20d016c1986a9b59a2e72c9f563e2612d6fd8abaef36502b09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:36ad94f713aa261e8bec5d3b9b30acb82631a6869011abdd4d6bdbcb8d3c248b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:72dcb0f3c39e359384c0980189e109fd6bf3e8261a952af68a617dd49a9cec41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d00bc7e74a803dd5d6c56d7a4a06a6ce7bf1c53f3d0ab10e84c640ec9bb0c868_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5d6d8c0cf88a5b17d926882b2ac2f9960c217f7f96dc58f17a7ab6b14b107d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:75d146144a5c5c4f7d8265f8ce7cc5126a86e47786a22a15548940b93aa4d9be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bc3abcae57403e6790d40b061659dab46eaf7847901dd2f5c38dea2b0aa73a13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f4a37c6c7f1a80d9b1939a9e7531be0187c14ec81a1086ffcd9fe2c6005b162f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:502feb3916ec74965bea069c6a89c51b6c8362fb4d6310f161a46c56ae5c29f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:eafde0e24ae44b1d8aefa9cdd6b0db9a61080dad1ff9db25b5c7814d294a6860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:6b61bcf36899eb6858dcfae5449bdb62b6854fcfff2f1690f509ba0b3dc7802c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c6cdee3a2eb076718af088029e926b5ce3cdd56a6a8d53d21121cda12ff7d2e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14d978b214d8bf5f1419b1acb591fa97bd0c5bcd441e3d62c5acc8e3fc6b9900_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639d9c9a23b40194d8e129c01736e51a86521f6f7300cc63502434c1f1871905_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2863062e890d0f9a82c5fb02da492f45b6faafbc0bcda599635dd369f59eee1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9bd7a199673ca0db7bb39e315e57fa8bb1ea6fe18ce42c81e403173af4332823_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cacc16a9ba004d27e7a91dece488f9a68eecae3f1fd45ac0174ff5c02b0c58b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f985992c7d9f260c0a641b97ca28d2ca3c2c1155674332bee32f0a2520e2894d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3ab4ecb067d7b2767dc379dcd39096351d3296ae26360a875809eb6a9926c497_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:42789f5386e89bb6db848d653e23b3ff16fd4abebf84d93099d60bbc557fc508_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:689c8f637eab5c36ac36bf94755b5aba21927243325cc4ee7b41c8009a609e7f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:da26d48335e3acbecc7d2cbc8c2b80af4863c63e81331d23136475a197ce10e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1b6a003ed39066bad704b922edfca38f73b213c1a5b4d2b0ffb25de926115f72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2f4488f6610f6ffbb4040e3f01dbadafcdea3a0ff8272d0df610a8628a5299f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:778260003f8ca6b081bad68c1c20b2f56e049494ecea7ac59bb4866a1d175fe4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ab636fbee2c45503305b478adba89d993cbe4e0872f0045ffef6f0a5c3d40067_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:29f36d424822471f4149fad4a8c7b8599570fdf1650cc65fb47e589480dbce49_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6ad01ed26230b2597f4dceee38b0970119746d0700c1a4f4ae5587090b922b62_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8a7d6e1b5b6fdb4d9e1dcc0981b9f0c226504994ecd5c9b521d611d6fb3f60eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c0517717bc514dadd809b06f333650045b42f19cf688218bb65619401cfa0a03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:17cf408f225fb16146fa23e7e92027200613e49d9a4705138526e92cd34292db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:70a1c32d828d4050a371d939fe023f190d0cc84bcda94eb5deaad03b663383d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d530fd2920c901fdcc00d78b197f5aed4c1a3e41b22b7d6d088a1427c3fb22c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f235a66b2b51a58f00371cbd8cef488b18ab9b616ab8250e09ed6f3b26b088fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3efccff3c470fa17ea138e2767462f6c5fd3a22a576342e780504396a8d685fb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:874b56bed24c0bcb9a44b84944492bea0495218aa37c386d64f727564de11d71_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:90473a642f1f0554f674fba40c3a2f478257c0df2b2fdd4571230d711afd2f5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2301a3865273e621b8ca89f3a9d357444e8a713f8db939bcf50a9093ca43e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:4f23340544197acc3301d5cf358bd1d5a62eec76185cad3fd359502a4bc1965a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:642de1e760ead4f0d23e182f4bc1cde4419236616719e06bdaccdd96bc8bdbbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a5dc92b4a79c1942bb6d623f1496ab03cac1d4790713d6573ccfe27cf666de51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d62d303eba315a41b27a35061d0455ee4354bec7f55f4b982e2ca3550f4f7f85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:5c767bae2644c1d578ff3a71946c9a46a174e09c8758594d1362ef1fa91eb27e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:881fbfa8a22ad4899be23f1a9e4e8d11ca60c289f5bdc05d55348b1fc78a4d59_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b36142a4133d64a7c07ea8f6118af5d298efaf7435eb987601f03adf16a68e0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bcd4cd1ce223dc36ff2b491ffd6fd0fc300a03b66efad3386fef9a1ecccab160_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d0bdb446eea8c9c8ef366747e989eda1f5ce148d299e14e83c7bc5a79a1a64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:57d27a88ece5cb8d525ac6cb15ffc492b139c78e5ef1dde25fa45da426ec8111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c944f26ca720a2eff7a149b51cddbe0e3b86dae01c0b199ac64ceb4408ee7173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d07cb374281036a9176cf62c6ab984ddd32cae1081e1d94e9babbbd5102d551e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:aefb79b78be6beb7a82a30b10390834cc99b5e459445737f2394bc95079d362e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:b58357808a17f993f9116c3212002ed6266632835d2b1c735b8515dfe483bde6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:d817917f344bd51021b7b99f7842070a36ccc14af5dbc9ae38ff953f6ff1a47f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f47069c08d88befd9b07f5276719c348c5cf42a59b6487e8b6f2cd7f3627a147_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:086b1d7cf0e2d1e11245d6c8dde30a887a787722565b47df72dd7923fc90d3f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:78d22fd1f6907fa4041c806c5a8c5597907063a54a0c60f9c4e03e5e36e27a0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:beed8c01b2341882e063f8bcf69465354b1ffd546d2e5669f7538f0349aceb1f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6cd6b7de09869909c5c3c517fd85d7ced356080a58147a3a32948a147033b29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9a979040842b8f57145a9c4b583f6af6b64a5bd07614fb9ae9be665f4c8686d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:a16a4108a0ff9d744b2f7b0cb5ed0717e61174f76669dccdbb7cae66d4d9fe19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:d2cbc3da2ffd33e7768582cc6273782d8a50b9744f2e2a83046fb341f43c4073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:5f1bf73b56019b4995cf13c354b2fd5f10842cc310aba8fac9dfa9feefa63bdf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:6facf1dc0bbcd881472d04d4ade125125b8c485c3a3844b4c7e387659de34a15_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:fd0d3fe73d2b8ea1148f69838bb695d9316cdd8f3624564a9a16ef1693bdad5b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:19a97bda155e1323a7ba1a019c286fcf610e75cc50abff1822ee20c5c6bc67be_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6be0d75d7f1b955cab11219728dc5e68c9509f3395258a677c3828aca405d2cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c501f8eb8e8b69d86d6c9f9a154af5ae92bad13694ec31d2dd9fd186e1bf0ce5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9ee4374c63cbfc608802d8203f3a772e419d5dba966ef6b04b14ad59f51a7959_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:ccad53791ba962521392612357ab22a8eddc91d7335ca67ea4416142cae04e2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fd33882ea9e370cc80499797d13e0c662803547f28391da561907d7142dc3931_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5cf972649abac633a7dacbda5c8f0f36ef8f0a602aedb97c1e7b33e075b22a39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:8cb414a4241d15de01df06db20292b23958ba53650896dc259718e2513204786_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b93acb800e4a82c4bf70a500d84ef792e0afbcd467642b5f3b405db16e71ce35_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d68f22caf26c847ce9a39b810d8d674a7d56d77e6e7022469ecf5d59864aa940_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2b8f395667d6b15756e6b4c8bc45f105e9da34dc84cf5985b8da9992d56e0ef9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5174abd63311c29aa9f99abd9a6c47a70a3ad793e8838bba702e7a5205538fec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e120c02ff2caacaaaf379e3281fba3b0ad1a5bd79aa7efd63eb5cea049993e2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d7d084e00719ec27df6b4df320d721fa4af0e58819d996e0f7a933c0738beb54_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:42b4113f35c14c59b1f6a2202981891503690797e41e04a742abeff96fe7adcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:4fd28f2d7eb2c4c80ce7f99d80f07eb5b2a21cde4d74a5055f960acb3c728909_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a84f08673e27fa928a44f7c732925a22c7d0d41806a934cd712c760c0f64058f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fc2f35b85d96e5747a0be9677ed1afeca435f649a7125b4cbe87070cb7b387ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c46b21c67d2f75c10e96eba3006914ca0cfcdb97157b70348db53b6f0baac90_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:71e758ff1c423bd3735c0b98617e83c8f21db1b716e9f230449f2ff6d7688ed1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:ca4aa980b6a1edb0bfcd7bad5087a327e70240925a4121e576adbdb0164c1814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d543831fc6dc300c0d845cd730555aad33097027755f049301916590208c774e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:493390d0a3b70628c6abb8c0e789cf6756033cbec8174bf365aac91dabc8bcf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:def529d616e3a0b63e4fc82705e3e82a66cebb726d8b189cfd9d381827972044_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:5a766df19e7580c3b4438dc0501bf2cb2b5dfb61b1279499c9f60be960c0eee4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ed24a5b85eb443e0e1c19ad67c48c2dd5537d3a0ae3f8091321b5497a75d237d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:4d0761b130d289f63feef708ff4b2df1c9743b86f7094ffd2d088a7caf16b162_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:73f9e469304792918fa9783460ab3d48cfa3829e62559a8413a124c5ac0f5a07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:8167990391d464a468406ceb69919584d5e06ff34a9652326887d7a10cd7a6ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b774d1ad6ea0976facbaa53257de250c31e8ec41f30e39381c38d1434a97e560_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:bb99212685309e1706bbe702b18be934e7f79d6778d07364b97ec294dea39a9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:ca5acbb44e1dacc5dfe27f29ff6e1d1e708ecbd70e35f15bd3dbacf55abb7d27_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:cec9f02eb89d11586c1e8ebf8176261c984e929962b8252959f2847c170b2a70_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4a09ab8901686c8b0c9ef15a21472bf27ae20691c6a9efd594521105a9798744_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:a599ca9b595002d737f7845e1d482ab42aebb7f32ef7da024240a9f9f8ccd5cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:518377cd35b996ef99ed18ec8f985d1ecb747e210fc3a19eae78fda1140b39de_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:588f72a58736db68c8a1f92134a273cd63c97d410273d32163b96ccc4626f6eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:aee7b0724dd01e5d9ca933b6ac28417c2f8f4833ee2c8f332613e53b5b6f11fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:daa30a5996930585d947667a4f81cebb9116d07249decdf81bc396fef355c90d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0a975a7290ef484a7bd8f90bd6686711b9cc5dbcc430775b05bf1c928f14c31e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2008ebae1a3f61fec0a5f31d44ebaab3355cd95be7968897f96d5e4b4e1fc1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ea0c948cbabeef096591e1c9ef09b7020127a61afd5a4b55f21d982bd1bd1e0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:fda9f62ea0024a0f4f3c722f589f54916b4ffc7a7322e0156c388a26e54f5d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:094ab20667a77e9e3e4eaed4dfdd419e064606e80d42a6b732243ecf8e8996b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:108e195e96fabffda2dd2afc8bbdbc17ca2e65e817fde819d26acb0aad2fc479_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d298654d97d049e45734f90c6ffa4cb423094fc89e9e0d95565fa25f82fa4cf6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:dd79e66c8aa9a58a29049c031cd68a0058182364f6b1c7cb46bde4f637dfd7f0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:c5688b12d1aa6f3cc2e1ae5e3e1a0af153eb9b888ca6c649c3b29c6a99737e93_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d001d8b46a99c6beba5275167af10352e62a7fe9c7316eaa82175034e5413674_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:34608357f5d3bed01a95918ac0f50669dbeb41a05fea3504ece5b6f6bc9cf695_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4111d090728ecf799df0f43e83ef644b0c11eb09d9a191b235c184deb77295b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:ee3d999e8db2fb41768aeb371e086b241176a0a5135dd76db3c713096aef0baf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fae9e60d75f4d4df544bbb760b0e5fa7faa42c88b976389dfb66cd35e5985785_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:22d0f5c9f4e23bce0915432f5c8fc77d617e7be5cec15abc2c1e574fac9e9cd5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e7134dbcfa5027c3bf609bcbb539a1227b309231a8ee3ecf91f3d9dd0b2096c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1dfd4300c3716c3f4a32d9e5f3523261565eae7c57fabad54beb80e6049b8a1b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3c78fbc7ff1e454c13a333e2d7483da3ab79fc4cc1f725cb715a8e10da675e14_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b12e0427993cbe115472ff2c66b2010bb7e0a970bca7247c31a3e7416e9df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:f1ceb85c96cd6c240e3ff34abfbf3551662ac13858f0f7312b535e5682808828_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6a41e7e1b14857c5a1656b19f364ecb016c49b3bfd734c04be97cf1e7c0c33f8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85323d80e6b8925bdb1d6e5a3551b65d92d9a5e23f49eee4aadcb34872d9edac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d67212bfdcf4aa125eb8e21348dbc924c4fe16146b6cafdff6db5647b298dcda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ef1879f3b76f8323fef3b1bf3f6f8457cf41878c4a959faedf0e7fe259cae000_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:399029fb7fd765fb3e5defba0e451f94f633b3ef7d5ceb3c1c7a3fe971ab5489_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7d90cd57c61ba867c82d056f74e5c948ea957223b3cef69a0efa9b1c578d2735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7e153da7d6d37e72b367d5549ab84a864f45e4ffca20be15c530bfd377af7b1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ae8465a7bb503cbb675d0126b65e097beb9c3cc767875563a6a5ed49bf3eed34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:26ac596e3b6e967ff5ff4e66f9ce81293764b13cb341b13a6ef03e8f80a8e4c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:58914eabbfdcdc468b37691d315a2ff796de1681e1d35d7492ea749d4ffa4b3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:648c0ef4dce5a3c11b93a49c41cb2cbfd90ed3743b8e5854a7bdbf0b419950ef_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e179898ec316bdf753f19182202ffdf76bf5c0eec0643faa3eda82531a434058_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:4ab17e0c3c2b6b83948c9b6c2d21229cc3fdfcf3e499362b524ddf6e52fbbd78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9a8dc3e20f21ae49d845d6f0f86971fa38c49acc922599f2ea08b3bd3e7571f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:caf27f22b2c41bc21c211ca33efbb4eff57a8467738204804ac88c78000bea7f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d74054da1adcf8536c828004fb2f297c518d623b620f90999f39a2c043185826_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:7b40e81acd6f6e832e1f18ee81512cb694890aa1114b2e2cd1e173946965eb74_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a0088cd4164ab7ea287f651251425afa1c387e8a2a06d671fddc6628a2543577_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b08c14e7c145f7f2d43d79cb66909367faea7d0877966136060bf841983fa5d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ea71e267cd10ff593aaac5dafb674171cbb1291186218dd6cb60f32589168054_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2cd40f7f4e722b455f16cc487e4e1a57a9bb7c10a7dc71e7d84e5dc56a0a0555_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5d7b8aebce2dc917092d69ac071123e72107d18061b3847d24e8e72a85bd825c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8e57c1a2d98fc83f6cde6f6c6cbf8d3e310a163762601cfa1629d849830e7de9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d4f32c122c6d0049e2b88afe7cc033495411f897d988418fcd24f5a1367041c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:397f3235dcbbd0089276b373971b25fb7aace9d05a8114db12a7db899be295cf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:90fc94a7819d7fc45674b15bf73912c667b5a9b081398cab4fe9a4848ea756c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:5c81205a9416e933b2c325a436e108caa0c2bdb058cad465b2c16b898e4e71d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c450c1312621fc92154a6618981286fd222d73f1bbe053f042a1fd230ef27bf7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:35fa1b92f264867710934908f0775a6f1f96a12f6da8c38ebd70a5adf0a599b3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a3b35f018b7a57e8c45ba674868552d7ef62424d0a654dc5dd4a165ba7e86bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a93d8fe39bdc65b2bcbdd914604ca57aae5903e71fb1bc025100a68875b1974e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:20e1a10611e688dfa2d55690172c66329945abbcfdb10a3aa8138ae472b9bf0b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:270300c7525df14a0d1cee7f8e4f99b6af3bf8c1795d8d8c05bc359246e9409f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e81c99ac412b0902de565105e6d3b5c1fafd90dd4a14344e15058e46c9a8c94f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:eb5bc3a0a7869b5ea04ccc1d00052129312df9e2cf9874e4a9248b35a34c9d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:59260d59d9c1e3d5f2059091789e919d84ad5fd04751fce8491a11380535649b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:861ce5f6e65c574e2e092074dbaef414d413e678dd6e2372a5efa36a61ad6d89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:962346978f2f930da1ad5fbf7f6b5791d3a8875912b20a5ef6ed73708b980317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:ce8ba2ab9f71c04091b6c071af5a070aa83ae8443228f3f3a82795a49a50728f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:025e33c10792cf18c0d3c0006b747c742dc6b527f68ce32721657c3dd4f64d11_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:21f603ccffc9fa5703f92f919f5768b77859ed2b886e8ec0d6cb5e5fe12d3144_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9ab28f30e04ee61d08668cdde846612120fb872a842f02d9bdfe248bc32980b4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e9c6ac495a2524bb11a5fcd9e7d321e42d6ad5d84cf1c59f31e117331756a44a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:61fea48711548377a561a9cfc8f3a3e003364a5ca74f6d87e9a6798bdc2dd121_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8529eb63d932b6c2ef14d964ba0c58285625811b912781eee57be31a92728729_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:b2dc25cf7e4fffe35616f3d8d0ee49fbb99633e17b519cb2a3f0452740bf3183_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:da669a6f83957e60bc1d9d0089d44d130df921346816e1df4d4f11ceaccd7c5d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2b092b348964e17cb17a78672361189c3b81e1aa833614daface062c89601cd2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:58187167dcbb8be816fb0ed3ce32f67eb6ae26e0daa186aa641b862777ed882d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b37956dfce0041069c59fe4ef7ace48b52ddb5398effac7719165da1d14f5aba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ca3d2544ffdd2d02da816fdcd2b01b4988b7f722a7e5789d9cd09e78f0ad6538_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:03cbf5994c3a6def330bf471baa562e85ecb7df8ad2276e0ebcc4285cc40911f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b8dcf3afef7003def9c66c7ae247bf03316ffd2d4f31b9685d28e62d014b604_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7a6931ca90c8d95e8ee334d0fd48897370fed33c60f0412424f01d4e648b7d37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6895e9c9a00b74439f613ded82eef64f3b9e518710f53ff5f66d99d3ab8cbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:897af15512a83b063bfef713029ede645a782ff1b97c18534b179ab47ed733d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b5d84708813cb40b4d1e0a6da75b63e3501d378f2a8d8bf9d9f65b03a07bfae6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:c73cde2d037c9bab044e5950015604036062795b96218efc2e588cd26af630bb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d8000a35d2c006abbbd46d75a7a59795a3f359c3603aa48773979f550a80da4d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:4bbf8fbf95d47eea19f0457b42dfa8457d8a889bae0de46ce871f3a848e5623c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:52d2af6cfcec300459e24f57e1fe2de36be99110d9e98c6193126d08ab297aec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e25b3050e67243305341833965a218d99851443fa4746b19e1b8e66ff0760495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e53f17c01d678f12d34b76e1f38a6e43e20e982783bbef9ae88dc7ddc7e414a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1e690d1888cf263252a6de6505148f5798d88b72844b4f34588680e373739384_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:707740c0e7e8d0787af4fd220af2a01c434a34249de33a9e951b145bd08a3381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:7c898eeb5eb6120a121c557a2fd2b835cd1266275dfa3e58f57c1429d4a5fb52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:8eb109b999d6a5502a7ffe1c3945dc74749b426b3adf77a21eea88b06f1d34f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:12ad458bbb46221eec9865da5569a4f09f545e6de3245fa1196153c30b74eed9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:a1872b3f5f2d91322d7a683898811b9de94b11be3d4d4060b64c8ee26d85b279_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:cbcaadc2079b5c0a25255aced4ee365e09eafd883cdf191ed2b316ea69e6e572_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f6378a28e1f6773d96a366a441a67720f3d607313851f091efd2caf872786222_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2425c350c92035816c461ad540588a05475cf999063ff379fb1450981ca63002_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:476d6f40396d481c4eb73ae50e9a6715a23d87fa082668ae5f8534a767fbdca9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:800f9d41564a3a6b16a0476efb8b024cd14524cabbf7035f12b8075ab46b8b57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eaa4f1a6eae132330a51f81b4b2f038d4728ccbf23038665a4f36ddc7be8e253_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:86b26573c6416f35536faf4eb2b3c01f4dd68d06444229034b0b0139041a86b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:89cf66a5f00e2df16b4cdcd792c55f92214b78523e58b78f48a8838c5de05f39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c6c9421804352a020ae5a7c89a7b07138e9268426a4b69af20936d804e3ef29f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec04badb1b1973018fafac3a5c6ee5a20873f605153d82ddcbab9e4c1e20e8b9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0708c5c67c0fe423c80d4f8a09241ca028e031195f881a2eb25c1db396b3b908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:13359c98f8024d98b1ff836e51b860e0da7e16cc146590fb8caf1c9abaa5f6e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5c412aa4a6e99d031b9252c1c37e5b54dbb1118f1556f705a4d8d2e9a7309e5c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:7ac645c945e1af87c4e3d31b8bb8d356956766658af428dae4aafb769f6a651b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3c96989c4f1164bfccbb5e92c89c94c1b4ba98dad54759941b08fae4c707cb2b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:896066ade1b580193b158110b9c3f81da704b35385848315b99cf9c79d52f7b6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9e69614c7f9334aa9a8a73acce3ca87ae36acf4182d8b9a14c8172124d95919c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae30f6e96beb30beb55e0ec97bf0cff4443e2e8c335ee7bc092a37d2352c7a62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:50c3aeded4cabc2b977f6a7f7431cd2ac47858c46a2265dc7ad0ea4674b8d405_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5572b956735f2b9f359a3ec40e0be9e8399b8ab21b703592b8a14d6947fab712_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8c54078ad775e070592fa39423f2dd502e07bb862ada960ad9aadd03859e2fae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ffce3b531bf19092a1bdc11a0bb5c6676e533c809c63f9f48e5af8f2bbe5aacf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:82dd103bc1768eb4ad70e12a2d3a6c65c3c33c0be7adde9c6980061cf201d71a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:febac7fdcdccefe1a2e3223c564ebc4e5c0d3f7dd04f0e3eb491c52b7137b39a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:95290ee23db2d5cdc94f7abc146a4c15944caf70f071d2cf2a07ec55a397d04e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:bce479d5cc28bdd615b311301d2b5299074826a30357f00bca5cbcb75b8b0d7c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:d494ca363e05599b20aeaab8dff0fe68b1455c5ea1c20a70d3eaf9e443544af6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fd808f9dc1ee9c01d6b1b74d0eef77a95a7cc19550f8ac14217ebca72c2ca844_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0553717edbb8b9b9c892907710fd929612c53967f5d245fb255bb9d00c55ee04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:66960845b4b0df2a0a38123a0b1519b32d2e63f50cea048f913015e078e0d660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:80ae9cdf72963727ffb16989d57669ec5f7c4895ce1cf488ae2388d8600b8acf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:972cb130e4f34808d198159c33383f9bdc308b994d47d48ecbeb98776d0647b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:00230724dd6f06d06240a20e99ff57caaeae7d6989119be4162dd6afe82f8a93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:36d99b347c55bc854f11863e0ff68e99573ebe48413a07b8cd026ab676d58d5a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bd74439e04ac9a43caf296427362b6149286e5ac5da9a2366edb750f97375811_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:ced925fa5f0257c643af47fcbe3df8d23c8887fb146662e71ce98815361dc8a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1dc6ab8238141a146b0f4931ac02b54454fbcdd5b3721071624048d2593cb202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1fa435939b3d849910c220ca6e94c8b9bd32cdf593194a7b02bc511655443e9f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8267c6ec84dc127fda001be7afd6cb07ea104b79ed09beba694a57d44dbdce5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c9b9204696a79e9e97662da1c5ab57452ed461a5bbe5ead258e8af4effc316df_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:390c5f8b5122c6bc880169db629a144197d25274f2cb3aedc74dfc45e595f7b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51223365592445986063f81ee33984854d6a9124320b90f52b573999411d3703_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:880e8d6b39877a896d4c0a6ad5c4e8d83d6d3116e4e8e3b01bf79d8b7b7a492e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f1a1b9d241319302bc71522f9d37d89a409d26ffe0bbeaa8357876d25f008476_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:61d16eeed4e3d4932a7987d3c0a222d59df1b9bb6674430ed4c032e93102da56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:62cd4e67fa363c9d75f51af7156d6b82a18cbb09366f12f53f89dc9bce45d5ee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:741c781e4dfc5e22fd93760b69c24f62e5969f387792f5bb64ae86e2362936bc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b2cd73c63618bf73b028bd38efcca87251221103fad30014426985c97bf1fe92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:11f12d823f14b7eba7c2f283dc9ab060f101e381742a1ba41615f0e0cf3e36ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2c56f9cfdf0d78e86ba01a30231d166b6a41126820b0143dba0b06e1417829c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:34952a76e52a1e18789c83bf7a466a6a23c0d0101acc791a787e901f9ad4ca8a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:82cac7ea25913a906ec8b4de79c74ec2029b1e1a63f85c2d7df8e4f8255e9f22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03a3660da9cc8895457797683154e914b0e6bee6429cbcad088f25add84d8015_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:62d3386ae6129f7f2c08d34a796269a2c0ff31dc93856a9d6c6ac967fc25ec54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:962397da5c20697ac02d21ed1999f1bb8331019aa60345d3df0bf821b120f8f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c7388d97b142bf1d605e0a30a27aa31834a35b10b3a5fe21695aa36c1a3762e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:037fdfd42f878e3719c99f6a000d13be36230309d91a276350098d4b6f13096b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:957954968a7a2af8943b90d2f66267f304c45fc4e2c1aa831ab35c706c15a0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ddd5d3e116ece65cbff300214f8760ca89873a0740631293b2ce56b79527057b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:ffae5c01c82064938be2906062b59a5915af70b1eedb54f3b246e45a9763a0a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:01dbccf2fc611c47ef7277d820bc86bcdf80f429e96e4fadb369bc7a335aa7ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:840b2403fcd6f1a21df825bedae2aa1e28862d6099328d592a86c0812585ef0f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:98a65a3271792502476bda806d554b245eef848336405a9b1e8587f1911c1836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:c34668e81934453a9bc49e79a95bf5cebe8e6c36a58d7934d38f81a9acc35686_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:48c78501afa275fc335602edffe9165f7a4bfe6b556f9d84ebfe2f397e249979_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:78a0509fe8582cf997f06b15067e27ab524e679f594023dca9dce4cd092e89c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d99889d888ee46c76580e4f3ddd17c3a2cbb3d2ea3a7b8cf1bac4ff568c13ea6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f0d1d6e413f890fa02a2e591d86cb33e96830e9b8f45f7ca2e82a591b8c5d508_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:078e807d93c7f8036f9983942d6f06951280477042889b209d30b78ce480216b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:677971976bab351099e7f18988dd8c09d052ab701434b1fb5e1e9aac3000bdc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95d880a1d6150748c7c5110c4cb101665caccfa9d32d8ca0a5d8a1ca588aa5b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:cecf000609d2d9167e3d7b0482dcc84941d7904c8d93f1fc253d4e04a850cefd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3f84ed8be8886adeb5069c80bc972f237408d93e7e9eae240a0665311ca98dc1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:89e10e0882e8bd50fe74a6d3a56d19d9b15574a1ad2f2858b8a2a04be304a3fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:98fbb840e083c877ff3040743c9ed8ca1a0b34dc29b4760eeecf5c8a33d7f917_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:db38c7ef3ea01c0c6e447153048f59e36e4f6ca63b810f9b63b39ea630a53f86_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:2024adaa6fd918260fef1454973055cb7e5e43d1d8b47394b029fe1be65e7df1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3580968cfba3778403b08d7b27613300a843f4ecd1a6d2c20e50470a0eaefaf6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f0863dc0936b800dc7018895bd0ea53047e599d3432203a215e762e79cd81310_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f2bf5fb6e11edba479ff6e10afe9cd9079bc2d3f95d2ec7f4a19d04a928f9d6a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:00e4ac3209307048efa1f3cbf41a4087f8e8e208e933e8cd5e9d97e5a35ed4e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0b63013bd65c7fc838f84c9ceb5f7185624e70f4a54da43eb057cd07dccb6191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a1de2da15d323aec635e9a2cfc756aa01da141131645311290601756bfe24825_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fb9d92e26eb22ee9864c1cecf7aac2a3867adeacf055882f78c3802721e71a7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:036b8f121003eaa088affa4352dd51435047f5a8bed82a0beade4d320d332ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3358d9e769c95e6580f2465f6e6750b2f8467cbbe491c1094bef7cf058ab33ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8a84d2bd78cc7cb13435204296f8dedd9fabcf4a565ccc57c681ec3c241d9a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ca96298bd87e6372ba6e30add4acc05a53630713591c7b8d4b29c7cdea102b04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37eb65c5a42e0bcf37dfde47ab9540b1911aa5f6d032b09fdc52f13b0d244b94_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:75b785976bc213d403277495d79bf3b94f54548f120510fd73d675824b271dcb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a56d8577930c7f06e0da9e790fc67e38aace749e95c1173a0a3331f14a8a698a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d708576c227465ffbcc6280b0c4f87b96be976d5fbf7d408bf4ba3e400396b74_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:93165e2b8d0706aa654b45027c6912834bf33f54f8f9a421f047e2375aa63087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:985a426869aaddd98a3813ae6e3ed8ddf86f25dec31a17d1540ec671d434c856_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d74d628c9d96bfc27695ceabf1405328f9b1a02f128d68f080995d0d6fd0b550_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:ef444d277fbc65432a770491fef18977bd60e9dd2294e98c37cf8113d554ab51_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2161d47ea266a305c85d497f43eeefc283cbd906d5d57d50fa076f31003c1fba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:243505cece4cc0f29a92c9a42b02b5e412bf690041f1cb08071d286d91b63480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ba3263b7cc59ad6d91b6a4903c704dbb5932e240dc851e9281d7203785597a3c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e5fd14549bcdc3045e8c560c298b10c40f7e61335cef8ee75cb42981850ce683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:0c7f8ecfe3fda6c2c642b816b684462d002a15ad7742969bd61176ba3c269d6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:79ebfa77d460d5aadf2c3913bad6d1a696d3de926e548af25b0aebacd8763ed6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6c26b4a518b6de3109bf67b0af0addf07e0f18c557f362548e77c2d79b51b73a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:96a16a909cac03a4be7b66dd1380fb3344558e95701f55c20f74fa8f596efca4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:2f0363781f4275baa6a6415af34154613b782e693c322775f115db2620133e50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:d56109571cf586d8fbc4d2cb18453c7801b2e0e7f4ed1ee57cc974f774134b75_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:087848dedc79be68f3d8a8562e885cbfc27d22d5b69d582bebd31b6643a3cde2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:b0151b28a05b9c64ab75959ac0e39ae1873fe947457138834bba84df04c22c33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1dc9d0be6a38fc1c2e535260b564a0eacabc0da2ddd659ddef700656f1a22ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:77de791c9875f04012a9d59b8738cb33e5e905140ac0c34ddf0ba0c2c21acf5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9c3eb63fa90ada7ec3285d5104fd2a716d156ed906a36946ce7607db4f8696a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f6f8ed352090aaa01624d26aaf3ebe94a4898a9e861c9d08bb1afff20d429dbd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3ea7b26a95eeff7a3e529388ca1e5f1c5ee4ead4af841432bfd15fee18031814_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:55a0d172326c729325411cdd7865e551fc218eceef9b271f03515d1e5c49b912_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6ec7dd0150dfdda2c9891fabc5e7cf6c54eadb7e33c67cb4234f2397983b0c21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:83514bcf6092263e99ef0ca0e574d81d6dcc3c0fd3bc706bae78d3ec0c5c4519_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:795e2d1fb7a98c9a1ca0df16452c8ef4a29a32994d744688f0938c783d9aa0a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8597905982a18d1d8ad6e44f882d1a63681f2ec38d2009162fb9ed085246c860_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cc10f5119792d3e5a77fb852ba03cb995f8e8272cf4af67be5447f54564fd822_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d084477192551974fe21b3f1f6151890eedfb7b876377597db8921569301ec28_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:19a4a59898c856e02b961b63ba136a77482e4e0c486c1358124b27aec81e1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4d472cf0ece01092c8dfb94d98aff305315663659aa86d6e144403d26941b434_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5e30dc5d2a7c352c246cbbf94a342f1031bd60d071d5b632dded33b72f2ee719_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c1fe142518bdf00265e7836a04b77d4394e904d791729407ed7f7412f670ded4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:2257ee84d92635bc8812d736495fa05012ade8e65ebc0014bbef2f6fad9fd279_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8741f2c1b005e74f5db6b83f21e5521b53c5fc12287103c5c05e93d77ee5e13d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:8deb42a72c403ec4f69e74bdfdc6c1a99aa17654e917a3b66fa94e2e931a4fa5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a0a190b3f246b91160ace1aca04018979fbdb32d71ded3b94985876c0c74fd94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4eece999c9b2e6249cdaea98240944839d5f0b43975c3a6d59cbffbf0cbccb10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:ac826fb182cc43bd608168d83d68c54feb98fa18fab9cd2b5ab07dff5be989f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:bd83505654ee9ec8dc17a69073e264a59d3a50e99f5c936e7da88ff7e9f6d309_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c290eee5a97c56066266294cbd6cee72860ead1c6f7690c4adbd642d812f8280_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:4d46895466f40152adc86c283d4023c5dae7155a97de76d1f3057205097b3e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5169284a13bc1b75c5f8b90ee0a7e7b729297cfc8d4bd9d411fa412d7da194ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:689d1ef5369ac8c06e25605a126c1d8c0ddb58e6c4508ad37dd28942abc75a2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d3d4b38e5281c5c63848334ddde40ad2a4a2be8dfd13b079af02f75ad2136f86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2112a6bf8f513a00bd3934756ac602d5dc278dc3f775a80b5d83b5167f071054_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2e4d9f60cb08175aa2c85021968217cbf30c47b17f7baf83b2ced7485d3a70c3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:701e4b08d294d240d33a203b6d3cc94d16f67fe7b379bb87ce6c419387132c70_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:e69dea4aa37b7d6f90aa315a0298dea21c896c6125e6368cdbf41c19182d7fbb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:012a666de62dca21b989376c6920512d0eec3d313616f795678582e147d4f49a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1a54a40a977c22db3c24dc74773aa2fdb47672a41b40a79f2da3cf0733e9a013_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:589c25091c6c6b2387c1bf9d5aaabfd4fcc6ed71798b89c340a816fb9756a6ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7838ce00d5b55ba636677e9a9304fea10d18d0c6004787f74d44c4ee2b9b6150_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:4bf07180081e47a04cda78940f8830b727ea0ac24f0067f6a1aa64a03e5b4067_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b1379d6305008a6794be7b3ea8f786cd72f4583b26b7f570e971ae8d9e2abe67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:bb0b934d1b140bf5ca77da4b9a151fb0351dff0fa9a0398f1df405dc50ccbe3d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e415c90973bf327b39199bff4c572ef29c74f4a7a00e03576a3f0c06a91ad430_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5aa3aa27281e500b65518ef36371f69baf8a195beb88c9dd13fd7425cdbfd880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b3749aeccd74abbcc5e8922c3f56f59df33e12c2cf1b17074b27e1afd5ade7a8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:cc7d05308151d3c74cd1b7ed4d84743b2ac01d354f23e57e26de6be310695076_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ef0007816cfda3900a9665be7746856d71d0e046abdaa27aaffcb5ed4a9b7d4c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4eeb67d6ecfe144eaad8082e51f2425b39ba928b1cd781a3f53092edce6d15eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a80a682e0e773e39ed6f76f9bb47d27f1c2374cc596e6aebb22e542be44636c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae24dc87a10e61d9469ab756872003a42b6f266c2aabbbe0fd01fbe5511cd863_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f30077a66bab5844cec7fefd7d4739ac87d005d79e3e0d089bfe00df3d112265_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d01ca4640a6e48eb05885b174291f251a7740e1588ec1d95a68ff99faa254ca5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:cf9887ba2fb4b0d1a6a0cb708f45442fc78ce3f82d9c25601711b8ed818bc5aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:20a0c5b36c95945d081ec313f304551865489d07ae635d74fc0750e6bd6f72d4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:ee1e522881609b80e58c905ee6aa14499df7b86a4c28ddfce083e202db020c4d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:6c8f3ed19d0c564742d6e0bcd230cf7149dec388671fa0143438eb88c15b0006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:fb2eb03704efad9477d36157c2cf0f393bae87367fe773fe4f893cd2d1837f3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0a18510587bfbf8d25b6f461761ea18ba1253134939dcf26b41403522605cd56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:26bfe8dad179220920bb12f667e90ddc50b0164eb818bbc39e061872fe04f9a3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d37f6163b6de50645b414f6b20ac8f523e10ed3ea3c5eb2502b17d80c118e895_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d5a70bb6ab947d3018f1c7ea3c70d96c76f5f329810a5987b63174037a1c9f4b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:2d000249a90d4bec6cfc99cadadb7f466ce7dfb759360358481d1e67c13a3293_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:67fd63b17ec702112db8e30cb313509b02f90b2d318b3a5d6ba009160df0c4e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7b394ce039ea8e94bce22390f42e2c862b232b52bc9867b0549aca465e3c3437_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9d78857c2c3edb3e6cee91aa2047155071f44da2e4f72221dd261f2c1c9fd802_s390x"
]
}
],
"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:1596
Vulnerability from csaf_redhat - Published: 2026-01-29 18:40 - Updated: 2026-06-11 18:11A 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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64 | — |
Workaround
|
A denial-of-service vulnerability exists in Authlib’s JWE (JSON Web Encryption) handling for zip=DEF compression. In versions prior to 1.6.5, the library performs unbounded DEFLATE decompression when processing JWE tokens with "zip": "DEF" in the header, without imposing a maximum size limit on the output. An attacker able to supply decryptable tokens could craft a compressed JWE ciphertext that expands to an arbitrarily large size, causing excessive memory and CPU consumption and potentially exhausting system resources.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64 | — |
Workaround
|
A potential SQL injection vulnerability has been discovered in the Django web framework. The methods QuerySet.filter(), QuerySet.exclude(), and QuerySet.get(), and the class Q() were subject to SQL injection when using a suitably crafted dictionary, with dictionary expansion, as the _connector argument.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64 | — |
Workaround
|
A DNS rebinding flaw has been discovered in the pypi mcp library. The Model Context Protocol (MCP) Python SDK does not enable DNS rebinding protection by default for HTTP-based servers. When an HTTP-based MCP server is run on localhost without authentication using FastMCP with streamable HTTP or SSE transport, and has not configured TransportSecuritySettings, a malicious website could exploit DNS rebinding to bypass same-origin policy restrictions and send requests to the local MCP server. This could allow an attacker to invoke tools or access resources exposed by the MCP server on behalf of the user in those limited circumstances.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64 | — |
Workaround
|
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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64 | — |
Workaround
|
A decompression based denial of service flaw has been discovered in the AIOHTTP python library. Library versions 3.13.2 and below allow a zip bomb to be used to execute a DoS against the AIOHTTP server. An attacker may be able to send a compressed request that when decompressed by AIOHTTP could exhaust the host's memory.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64 | — |
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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64 | — | ||
| Unresolved product id: Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64 | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update is now available for Red Hat Ansible Automation Platform 2.6",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat Ansible Automation Platform provides an enterprise framework for building, deploying and managing IT automation at scale. IT Managers can provide top-down guidelines on how automation is applied to individual teams, while automation developers retain the freedom to write tasks that leverage existing knowledge without the overhead. Ansible Automation Platform makes it possible for users across an organization to share, vet, and manage automation content by means of a simple, powerful, and agentless language.\n\nUpdate(s) and Fix(es):\nhttps://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6/html/release_notes/patch_releases#aap-26-20260121",
"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:1596",
"url": "https://access.redhat.com/errata/RHSA-2026:1596"
},
{
"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-62706",
"url": "https://access.redhat.com/security/cve/CVE-2025-62706"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-64459",
"url": "https://access.redhat.com/security/cve/CVE-2025-64459"
},
{
"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-66416",
"url": "https://access.redhat.com/security/cve/CVE-2025-66416"
},
{
"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-69223",
"url": "https://access.redhat.com/security/cve/CVE-2025-69223"
},
{
"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": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6/html/release_notes/patch_releases#aap-26-20260121",
"url": "https://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6/html/release_notes/patch_releases#aap-26-20260121"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_1596.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Ansible Automation Platform 2.6 Container Release Update",
"tracking": {
"current_release_date": "2026-06-11T18:11:45+00:00",
"generator": {
"date": "2026-06-11T18:11:45+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.8.2"
}
},
"id": "RHSA-2026:1596",
"initial_release_date": "2026-01-29T18:40:37+00:00",
"revision_history": [
{
"date": "2026-01-29T18:40:37+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-01-29T18:40:41+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-11T18:11:45+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Ansible Automation Platform 2.6",
"product": {
"name": "Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:ansible_automation_platform:2.6::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Ansible Automation Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-ui-rhel9@sha256%3Acf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768896138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/gateway-rhel9@sha256%3A9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768889939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"product_identification_helper": {
"purl": "pkg:oci/gateway-rhel9-operator@sha256%3Aa60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768882440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/gateway-proxy-rhel9@sha256%3A73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hub-rhel9@sha256%3Ae4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768873505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hub-rhel9-operator@sha256%3A4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768883523"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hub-web-rhel9@sha256%3A546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768878183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"product_identification_helper": {
"purl": "pkg:oci/de-minimal-rhel9@sha256%3Ad927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768846975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/de-supported-rhel9@sha256%3A1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768853828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ee-minimal-rhel9@sha256%3A3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768858596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ee-supported-rhel9@sha256%3A59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768929978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"product_identification_helper": {
"purl": "pkg:oci/platform-resource-rhel9-operator@sha256%3Acec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768869362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/platform-resource-runner-rhel9@sha256%3Ab6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768509220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"product_identification_helper": {
"purl": "pkg:oci/receptor-rhel9@sha256%3A64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mcp-server-rhel9@sha256%3A01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-tech-preview\u0026tag=1768871010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"product_identification_helper": {
"purl": "pkg:oci/aap-must-gather-rhel9@sha256%3Adf7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884273"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ansible-builder-rhel9@sha256%3A25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ansible-dev-tools-rhel9@sha256%3Af1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768925972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-chatbot-rhel9@sha256%3Aafe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768915992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-rhel9@sha256%3A09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768889838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-rhel9-operator@sha256%3Ac09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768950228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mcp-tools-rhel9@sha256%3A39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768887865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/controller-rhel9@sha256%3A351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768890500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/controller-rhel9-operator@sha256%3Acef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768883872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-rhel9@sha256%3Ab9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768888579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-rhel9-operator@sha256%3A5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de?arch=arm64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768882925"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-ui-rhel9@sha256%3Ac7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768896138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"product_identification_helper": {
"purl": "pkg:oci/gateway-rhel9@sha256%3A7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768889939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/gateway-rhel9-operator@sha256%3A73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768882440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/gateway-proxy-rhel9@sha256%3A8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hub-rhel9@sha256%3Af2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768873505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hub-rhel9-operator@sha256%3A19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768883523"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hub-web-rhel9@sha256%3A79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768878183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/de-minimal-rhel9@sha256%3Af0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768846975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/de-supported-rhel9@sha256%3Ada951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768853828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ee-minimal-rhel9@sha256%3A49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768858596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ee-supported-rhel9@sha256%3Ae20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768929978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/platform-resource-rhel9-operator@sha256%3A03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768869362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"product_identification_helper": {
"purl": "pkg:oci/platform-resource-runner-rhel9@sha256%3A08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768509220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/receptor-rhel9@sha256%3A377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcp-server-rhel9@sha256%3A8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-tech-preview\u0026tag=1768871010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"product_identification_helper": {
"purl": "pkg:oci/aap-must-gather-rhel9@sha256%3A25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884273"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ansible-builder-rhel9@sha256%3A6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ansible-dev-tools-rhel9@sha256%3A62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768925972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-chatbot-rhel9@sha256%3A543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768915992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-rhel9@sha256%3A88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768889838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-rhel9-operator@sha256%3A1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768950228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcp-tools-rhel9@sha256%3A88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768887865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/controller-rhel9@sha256%3Aa567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768890500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/controller-rhel9-operator@sha256%3A6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768883872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-rhel9@sha256%3Ae441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768888579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-rhel9-operator@sha256%3A0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c?arch=s390x\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768882925"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-ui-rhel9@sha256%3A50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768896138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/gateway-rhel9@sha256%3A932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768889939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/gateway-rhel9-operator@sha256%3Ab3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768882440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/gateway-proxy-rhel9@sha256%3A570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hub-rhel9@sha256%3Ac9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768873505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hub-rhel9-operator@sha256%3Acc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768883523"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hub-web-rhel9@sha256%3A31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768878183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/de-minimal-rhel9@sha256%3Ac4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768846975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/de-supported-rhel9@sha256%3Ab047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768853828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ee-minimal-rhel9@sha256%3A447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768858596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ee-supported-rhel9@sha256%3A0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768929978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/platform-resource-rhel9-operator@sha256%3A4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768869362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/platform-resource-runner-rhel9@sha256%3A0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768509220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/receptor-rhel9@sha256%3A5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcp-server-rhel9@sha256%3A08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-tech-preview\u0026tag=1768871010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/aap-must-gather-rhel9@sha256%3A64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884273"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ansible-builder-rhel9@sha256%3Afabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ansible-dev-tools-rhel9@sha256%3A635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768925972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-chatbot-rhel9@sha256%3A46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768915992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-rhel9@sha256%3Aba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768889838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-rhel9-operator@sha256%3A8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768950228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcp-tools-rhel9@sha256%3Aceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768887865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/controller-rhel9@sha256%3A4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768890500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/controller-rhel9-operator@sha256%3A21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768883872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-rhel9@sha256%3A0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768888579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-rhel9-operator@sha256%3A224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207?arch=ppc64le\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768882925"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/gateway-rhel9@sha256%3Ae21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768889939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"product_identification_helper": {
"purl": "pkg:oci/gateway-rhel9-operator@sha256%3Adf7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768882440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/gateway-proxy-rhel9@sha256%3A31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hub-rhel9@sha256%3A45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768873505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hub-rhel9-operator@sha256%3A351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768883523"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hub-web-rhel9@sha256%3A7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768878183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"product_identification_helper": {
"purl": "pkg:oci/de-minimal-rhel9@sha256%3A7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768846975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/de-supported-rhel9@sha256%3A1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768853828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ee-minimal-rhel9@sha256%3A4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768858596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ee-supported-rhel9@sha256%3A1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768929978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/platform-resource-rhel9-operator@sha256%3Ac1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768869362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"product_identification_helper": {
"purl": "pkg:oci/platform-resource-runner-rhel9@sha256%3Acf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768509220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"product_identification_helper": {
"purl": "pkg:oci/receptor-rhel9@sha256%3A73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884807"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/platform-operator-bundle@sha256%3A039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform\u0026tag=1768951346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcp-server-rhel9@sha256%3A54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-tech-preview\u0026tag=1768871010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/aap-must-gather-rhel9@sha256%3Ab6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884273"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/platform-operator-bundle@sha256%3Ab4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform\u0026tag=1768951348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ansible-builder-rhel9@sha256%3Ad55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768884224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ansible-dev-tools-rhel9@sha256%3A00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768925972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-chatbot-rhel9@sha256%3A9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768915992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-rhel9@sha256%3Abb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768889838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/lightspeed-rhel9-operator@sha256%3A6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768950228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcp-tools-rhel9@sha256%3Afccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768887865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/controller-rhel9@sha256%3Abb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768890500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/controller-rhel9-operator@sha256%3A6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768883872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-rhel9@sha256%3A617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768888579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-rhel9-operator@sha256%3A4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768882925"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"product": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"product_id": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"product_identification_helper": {
"purl": "pkg:oci/eda-controller-ui-rhel9@sha256%3A2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840?arch=amd64\u0026repository_url=registry.redhat.io/ansible-automation-platform-26\u0026tag=1768896138"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x"
},
"product_reference": "registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64 as a component of Red Hat Ansible Automation Platform 2.6",
"product_id": "Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
},
"product_reference": "registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64",
"relates_to_product_reference": "Red Hat Ansible Automation Platform 2.6"
}
]
},
"vulnerabilities": [
{
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64"
],
"known_not_affected": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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-01-29T18:40:37+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://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6#Upgrade",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1596"
},
{
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-62706",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-22T22:01:31.800574+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2405946"
}
],
"notes": [
{
"category": "description",
"text": "A denial-of-service vulnerability exists in Authlib\u2019s JWE (JSON Web Encryption) handling for zip=DEF compression. In versions prior to 1.6.5, the library performs unbounded DEFLATE decompression when processing JWE tokens with \"zip\": \"DEF\" in the header, without imposing a maximum size limit on the output. An attacker able to supply decryptable tokens could craft a compressed JWE ciphertext that expands to an arbitrarily large size, causing excessive memory and CPU consumption and potentially exhausting system resources.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "authlib: Authlib : JWE zip=DEF decompression bomb enables DoS",
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64"
],
"known_not_affected": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-62706"
},
{
"category": "external",
"summary": "RHBZ#2405946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2405946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-62706",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-62706"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-62706",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-62706"
},
{
"category": "external",
"summary": "https://github.com/authlib/authlib/commit/e0863d5129316b1790eee5f14cece32a03b8184d",
"url": "https://github.com/authlib/authlib/commit/e0863d5129316b1790eee5f14cece32a03b8184d"
},
{
"category": "external",
"summary": "https://github.com/authlib/authlib/security/advisories/GHSA-g7f3-828f-7h7m",
"url": "https://github.com/authlib/authlib/security/advisories/GHSA-g7f3-828f-7h7m"
}
],
"release_date": "2025-10-22T21:31:10.997000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-29T18:40:37+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://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6#Upgrade",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1596"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "authlib: Authlib : JWE zip=DEF decompression bomb enables DoS"
},
{
"cve": "CVE-2025-64459",
"cwe": {
"id": "CWE-89",
"name": "Improper Neutralization of Special Elements used in an SQL Command (\u0027SQL Injection\u0027)"
},
"discovery_date": "2025-11-05T16:01:11.092353+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2412651"
}
],
"notes": [
{
"category": "description",
"text": "A potential SQL injection vulnerability has been discovered in the Django web framework. The methods QuerySet.filter(), QuerySet.exclude(), and QuerySet.get(), and the class Q() were subject to SQL injection when using a suitably crafted dictionary, with dictionary expansion, as the _connector argument.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "django: Django SQL injection",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The impact of this vulnerability on Red Hat products is limited to the effective user scope of the running process.",
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x"
],
"known_not_affected": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-64459"
},
{
"category": "external",
"summary": "RHBZ#2412651",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2412651"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-64459",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-64459"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-64459",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-64459"
},
{
"category": "external",
"summary": "https://docs.djangoproject.com/en/dev/releases/security/",
"url": "https://docs.djangoproject.com/en/dev/releases/security/"
},
{
"category": "external",
"summary": "https://github.com/django/django/commit/c880530ddd4fabd5939bab0e148bebe36699432a",
"url": "https://github.com/django/django/commit/c880530ddd4fabd5939bab0e148bebe36699432a"
},
{
"category": "external",
"summary": "https://groups.google.com/g/django-announce",
"url": "https://groups.google.com/g/django-announce"
},
{
"category": "external",
"summary": "https://www.djangoproject.com/weblog/2025/nov/05/security-releases/",
"url": "https://www.djangoproject.com/weblog/2025/nov/05/security-releases/"
}
],
"release_date": "2025-11-05T15:09:58.239000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-29T18:40:37+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://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6#Upgrade",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1596"
},
{
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "django: Django SQL injection"
},
{
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64"
],
"known_not_affected": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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-01-29T18:40:37+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://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6#Upgrade",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1596"
},
{
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "node-forge: node-forge ASN.1 Unbounded Recursion"
},
{
"cve": "CVE-2025-66416",
"cwe": {
"id": "CWE-1188",
"name": "Initialization of a Resource with an Insecure Default"
},
"discovery_date": "2025-12-02T19:01:33.806874+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418445"
}
],
"notes": [
{
"category": "description",
"text": "A DNS rebinding flaw has been discovered in the pypi mcp library. The Model Context Protocol (MCP) Python SDK does not enable DNS rebinding protection by default for HTTP-based servers. When an HTTP-based MCP server is run on localhost without authentication using FastMCP with streamable HTTP or SSE transport, and has not configured TransportSecuritySettings, a malicious website could exploit DNS rebinding to bypass same-origin policy restrictions and send requests to the local MCP server. This could allow an attacker to invoke tools or access resources exposed by the MCP server on behalf of the user in those limited circumstances.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "mcp: DNS Rebinding Protection Disabled by Default in Model Context Protocol Python SDK",
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64"
],
"known_not_affected": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66416"
},
{
"category": "external",
"summary": "RHBZ#2418445",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418445"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66416",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66416"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66416",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66416"
},
{
"category": "external",
"summary": "https://github.com/modelcontextprotocol/python-sdk/commit/d3a184119e4479ea6a63590bc41f01dc06e3fa99",
"url": "https://github.com/modelcontextprotocol/python-sdk/commit/d3a184119e4479ea6a63590bc41f01dc06e3fa99"
},
{
"category": "external",
"summary": "https://github.com/modelcontextprotocol/python-sdk/security/advisories/GHSA-9h52-p55h-vw2f",
"url": "https://github.com/modelcontextprotocol/python-sdk/security/advisories/GHSA-9h52-p55h-vw2f"
}
],
"release_date": "2025-12-02T18:14:28.310000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-29T18:40:37+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://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6#Upgrade",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1596"
},
{
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "mcp: DNS Rebinding Protection Disabled by Default in Model Context Protocol Python SDK"
},
{
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64"
],
"known_not_affected": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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-01-29T18:40:37+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://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6#Upgrade",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1596"
},
{
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 Streaming API improperly handles highly compressed data"
},
{
"cve": "CVE-2025-69223",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-06T20:01:19.831548+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427456"
}
],
"notes": [
{
"category": "description",
"text": "A decompression based denial of service flaw has been discovered in the AIOHTTP python library. Library versions 3.13.2 and below allow a zip bomb to be used to execute a DoS against the AIOHTTP server. An attacker may be able to send a compressed request that when decompressed by AIOHTTP could exhaust the host\u0027s memory.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "aiohttp: AIOHTTP\u0027s HTTP Parser auto_decompress feature is vulnerable to zip bomb",
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x"
],
"known_not_affected": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-69223"
},
{
"category": "external",
"summary": "RHBZ#2427456",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427456"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-69223",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-69223"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-69223",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-69223"
},
{
"category": "external",
"summary": "https://github.com/aio-libs/aiohttp/commit/2b920c39002cee0ec5b402581779bbaaf7c9138a",
"url": "https://github.com/aio-libs/aiohttp/commit/2b920c39002cee0ec5b402581779bbaaf7c9138a"
},
{
"category": "external",
"summary": "https://github.com/aio-libs/aiohttp/security/advisories/GHSA-6mq8-rvhq-8wgg",
"url": "https://github.com/aio-libs/aiohttp/security/advisories/GHSA-6mq8-rvhq-8wgg"
}
],
"release_date": "2026-01-05T22:00:17.715000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-29T18:40:37+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://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6#Upgrade",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1596"
},
{
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "aiohttp: AIOHTTP\u0027s HTTP Parser auto_decompress feature is vulnerable to zip bomb"
},
{
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64"
],
"known_not_affected": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_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-01-29T18:40:37+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://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.6#Upgrade",
"product_ids": [
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1596"
}
],
"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 Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:25a6efd0b0ffea2e71c9445b5182e573bfffd97eaa23524f4b68d5c607059996_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:64aac5689f60cbaec481e0555a578900d3e6eec1ce88383e99e26a326d7f4862_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:b6e302fce15818440e31111a18acbeac9b3c52d7f4a30093cb40a16f6bd8913c_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/aap-must-gather-rhel9@sha256:df7f3900ef9a956a086dabe8993c25980d49a289d38083abd7a34e5f80a20373_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:25a43fd175bcf1ac97874ada6616f7bbdcc8b4e320e0d05761de7c0a55d8d87c_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:6f8e6da5a073c87f19f299e056336e0ae2987a8c0347f65384829b8f4ce9e80c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:d55b1eaa137dc27cf655ba161f3728954c93708f31096f4d7bec74bc443a5d62_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-builder-rhel9@sha256:fabb3773554a200ec6bf7b1ce385a478f5412e97a0e50ef312f69ac7c98a4c68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:00dd5ef9734ae5fd6bf02ea9c0082be429e7001be8c89848bf2ee1b96f7cbe00_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:62629f3ff53f78d962960f108bda5107e4a8475a66d918d3fce7269e22e8d76b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:635caa01e9609aec3a9e55438d2881863b31d83ad8b9fec50503332e4479d057_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ansible-dev-tools-rhel9@sha256:f1eb029e6a3cd2baf020e36d0bb35d2c3e34cf3bfc90dd4863c2647fab1d5d26_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:21c1fc9587302a43e56a3a54287a9b8e0bf785984f0973343da6a59ac688a6b2_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6b07ed2196c4b51752054682b678b1769b3e63efae0e29dc798b44543f4408f6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:6f407a8a50253d1d86530fa2f7ed45fe01d9f0723f8db0d666012d7be282d4ba_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9-operator@sha256:cef9ad82fe982c80adbb7cf096ebb32dc69ad5a8428355a2e798abbc7d3940b2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:351a42dbcf06a2512e36799930cc4b44ed176f088a5d65ab9cc373f5ba0aa9a2_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:4b8e801c5a11c97202e4415fbaf65cf2a3351bd6c7368bc492c01f75285f8d9e_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:a567e651e4c79cff2462d3b69edcdbb2a50da4b4fbd9f1f3cc3f2dc93abc64b6_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/controller-rhel9@sha256:bb334abcc74bbebff0442393d370d7a4990097b275cf46761933a7fd61d94c87_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:7f64dd39779023cd008c3237b60b419821985d658d24429b92070db9224b2629_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:c4cf08cdbba3e616e2453f124ce11ebb72653e0de6a780b4f68307c90cda342d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:d927536428dd9fc5e0110e2edf0678bce6ae803818851e9f3c6db4b2c1ed1b53_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-minimal-rhel9@sha256:f0cdeba4cbbb214e6706c95328b304f0d08e33e4ebf654c8861f20bd6f16359b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1494d1eb6aeb2b180d7833f4b4ade9f0bc945b995ffbd2378256919b0704c2b4_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:1dd6b6b9d9426175830de6066033115287ec259d118d5214582730209f3b3e63_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:b047748fdd4411af0807776e0765f76bc3065adc16187af5ae7e43cf980842bc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/de-supported-rhel9@sha256:da951e7340094c17b6d359efc8d1e4591a9694a606cc16d007fae7e1abc95e8b_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:0aa678bfd5ae3650bd25e90b307dd251b3d5e56c700887c8f871301a9947330c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:224608719c557fe2d19d6f0353f53c592fed0e4232c34cf780cd38d7d5e4e207_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:4d67f76d999abaee9ccc5d27a9cb694498dbda905275962df54c7cc145c0b7db_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9-operator@sha256:5ad36e200f613831b479192723a949ca7420bf6865f6a0ff88e069251602c7de_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:0420e8e58fb2237a0024044ffe54c4c25ea92fb991664b0bdd9f5eec49ca75e4_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:617d7a7e88231785deb78260a5e3f08272fa53251adcb0a691a678fcbeeb78e0_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:b9109e372378d030e9cd0c8879d3ff9bc8221f0577e7759b25dd5e21cd6653c0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-rhel9@sha256:e441cba14bbc5d4ce62fe8e8600149eccaa526e4119c4d854fe47b998f754aae_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:2e52f2efbe884ac6834c6ad93402ce4bc4414a04fe120bef961ea9afa2859840_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:50496f24b9c844a7ed14d538cc3fcaeaca6da8667ba124503458dcc921d14fcd_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:c7f22e43c330f0718ba8d0441acc62c16aa09dd4825600ba3ecb86008828a057_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/eda-controller-ui-rhel9@sha256:cf99e97263656670cab278016bdc8c156c961fbabd0effdec016a1ff7b33f225_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:3142682f07816ed801f3837d3376f5852d14d674d86c46743422386ef7f4385d_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:447f06b8dc100e5ac709204e72d99852a622cc01b8cb177c555039df2e06a0f7_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:49cc8d94576844f60fe1131024a2b2e9e7c3d8c306439767d4c0de41369652c8_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-minimal-rhel9@sha256:4d392f1b1309a6a9764bb4e450780fd1fd168da36b0e6a01da73dd55a849a7bd_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:0ff2bdafed4d8a180b2ff9c994ff8054ce0ee7f07ecc9e05fc30cd551e62497b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:1aee5006153f2ae1d589355a9c2ea1090c539ca8458cdfcd480c04ec6828c755_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:59d301fdff15bb1eba9e77dd37e00c1e0576b509a14c1e76785773a48cc18537_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/ee-supported-rhel9@sha256:e20e5ad1f6b473f03edfb1b3a817c26bb43b192137afbe189e1ec726cb096477_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:31b7428af40586107a315eb1cac099c7343873c10523c2ffd8494c88217cc5b9_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:570aa2c712ec71fe83820f899fdb169bd9e1026490348368f02e6e3d04c7c6e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:73f8891d75eeede0e88824b3cabf4544727047b436f0ae80ee60b01e42230b73_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-proxy-rhel9@sha256:8d822db4e1a5271eb5fa31c203b32cd9f973cb13f34f5c2b68e296ff4f13d00c_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:73320a344616c319683550a0487d9ef1fb1fe54c2f06817d7bf13ff549ddd3ea_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:a60ebca6a3eb3f145978589c2322c107c23d4c32e799eb8d12f11b5ed9912d33_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:b3888d42eba19e6ceb6b631d113e65cd482297a33ebdb2057e7e0c44a7dcae60_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9-operator@sha256:df7d07eb597792ca1c493e5d78cb847a538b0e5bd061e93bf94a4fd6c99a7c82_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:7929136d1aeb2005121b08d8dc5cbe7d21839a6bcdfe5bfeab6e6307a938fd31_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:932a5db05aba507f85a7e404e8848d3a2009838222e6b1ede8c13b0f33188fab_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:9abe4b317c69871447dd2f4a74b95a6391cf6ed88d4125ab318d5e2310e8abc0_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/gateway-rhel9@sha256:e21ef827412d8de0d446b7e45d67423c683eea6ec12cded2770d845e4d07c02a_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:19443c6fd9838cbe6398cf2ea7df4852764ba70aad79d5da551e3503a3192651_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:351eefcfa754ef2f711aa301e927b276a95e836d5699d7e8e9d6d1176faf0ae7_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:4dc4a4fb23adb676eb1b70a601ab8859896c44062802a021b74d9f3ae07d0ddb_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9-operator@sha256:cc2dba295bca8642284d5b38b486565c82cdcf9a062c3d0acf2b1f0b15960a0d_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:45b1e0961f8a9c7eb8f65972c898c76cf19d32a95e43260c01ac23a578df44d3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:c9f04fc98ade1aaa7ca7ed968a2f00660a8d625d55358f6df00642904de0d0e6_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:e4a85d79271d489c89660d522f9a857fc6ed8462e0f9e753ec79534aa0de7867_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-rhel9@sha256:f2845e416829b88121dfc03e75c90ac659002b82ff8e5c50d4aa0e16688a9627_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:31da220ed57678f609cbf3f360837f300a391cf06a127169707593ff3b617a44_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:546b59720c87b112388791cc671b8691dab6ca5036e031df0b0dc195a1018a80_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:79a282b30e96620cbadf85cad0d53acee1a9bec8f01f0d4759f4f019cfd6b89d_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/hub-web-rhel9@sha256:7e9d7009faf4af8d39b3362b60579ba0bb83f91ac859a0ff354735c3f611e339_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:46b2edd6b932b2e06f8f097878ebbf625f89b822393950d2e1acc2f8957d1931_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:543e322d6eab6697565ff430371ff730ced0c61251239a6273b878013ce5a266_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:9ea713296e07225823aaf163accdf9a0d2b8c1388ff19fbffd6b9ec12830c06d_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-chatbot-rhel9@sha256:afe3061a4f340889830034e31c3cff08e24e11e9b9c6251a5f63f636524bfacc_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:1c59de49af7767f48321a739a44051321ecac2adcedd95518e0654c9f4a2eb15_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:6294eded6bf2caad16b29c5b920beb08d91d6c52a7d4fd845b1d4a01365237e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:8b95b9b35a3a298376121492df39a1806177a6d3b401c2daebdf54d12b83d102_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9-operator@sha256:c09e419e8de17ce827388e6bd66cc72a424d630d8e9b5a727cb7286716c7fcc7_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:09874121ddf67363bdbf0e357c9e286551f34196307c13b0b432f7a1b9b3d45f_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:88b2f4fc0e7c1010eaf97a09243800c418a63d46621627a2189832ff74d04644_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:ba436e3bda96285fc91c559529ede143897056bc0302505960dc6d20ecb01d29_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/lightspeed-rhel9@sha256:bb11c4bc75f916bd4af045b753991df2efd4832e31007e09d4decebbc7d90483_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:39f20e081bcdf385ba8bac4d9e5f50dbc07917f7bfced0b56e068e70ef864444_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:88262cc5aa63e3beb4c78a51e9115b1bc85ae1c08a895bb7daf800ddfde3dcad_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:ceaa20f06a157f1a244c8e57280dbe315717f4ea761637d06c1a0937e6a69711_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/mcp-tools-rhel9@sha256:fccd13ac7d4850a0e46c2fae98e23fc5e9eb261df1c14e8ce95726aa86d475fe_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:03638dee7984f80be2fb136c8f33cdf58fa2281900c43054b7061fb897dc6ebb_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:4f4ff198e22a4d2e3f00f3966a08df8579fdc3d9afe9ebf093dfc8fdcda6c71b_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:c1e501a1d34c183e47e83082b62f959ba5a4e756b7d449a7d97108c6394e10e3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-rhel9-operator@sha256:cec442e07e80f62e332974070fe02522146aade2cbe5c417c8de4c77dc62f587_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:08261c86284cb6f786bc8d0f089b22dc340be5cfdc09b4bb4abd4c3a72181965_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:0d39c4c0f2cfa827a4452a946ea41c4949328a16490b9612d0828350256147e1_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:b6924383b6213e5231afe55aa029486fef16fad21114e2b7a6c66cd19d3173a5_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/platform-resource-runner-rhel9@sha256:cf50def1f70cc2ad3fbf3072608c58cebddd376ed3a06fba6d2ad732b08d0029_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:377e26a0752eda6db97831edcebd4058c4f89a837789f638a1dbef3b73a427e4_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:5566863e20e6dcc9b04192399afec4ea7aeb47ca7585633280a48169275b8f68_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:64ae7b732a677ddc8ca28fec2e735398822d234fb96dcc3a265851d694c79377_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-26/receptor-rhel9@sha256:73572a883c38cc62d91515fe94ae5e90d86246c841c44f2c57d89a95dbf98a73_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:01020dd8144633143bcc8060d08ddf149e63ddcb408a57fe4f7a69b4e6460f16_arm64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:08e91518b7f615417cb86b3847f3b58f77c6125c38baa324f1b220a5ad694fbc_ppc64le",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:54a4c7b1808aeb415b0d7072b8599b605eae0a6f5cecadd0b1941fcc307e64a3_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform-tech-preview/mcp-server-rhel9@sha256:8f3a353973669f0c4fa258dc7dcfeded5653aa8eaead4a93e84ff8ff2a7e11ba_s390x",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:039b5205029e5173cbe160e5325d2970373883d36d8143db82bd4f2977b53bcb_amd64",
"Red Hat Ansible Automation Platform 2.6:registry.redhat.io/ansible-automation-platform/platform-operator-bundle@sha256:b4e14389a82c9effdbdd2e3dfc71315fd6114f290ffca6e684e497070cef4e44_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)"
}
]
}
RHSA-2026:1730
Vulnerability from csaf_redhat - Published: 2026-02-02 15:52 - Updated: 2026-06-14 15:10A 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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64 | — |
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 Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64 | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat Quay 3.12.13 is now available with bug fixes.",
"title": "Topic"
},
{
"category": "general",
"text": "Quay 3.12.13",
"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:1730",
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"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-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/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_1730.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Quay 3.12.13",
"tracking": {
"current_release_date": "2026-06-14T15:10:23+00:00",
"generator": {
"date": "2026-06-14T15:10:23+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:1730",
"initial_release_date": "2026-02-02T15:52:56+00:00",
"revision_history": [
{
"date": "2026-02-02T15:52:56+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-02T15:52:59+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:10:23+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Quay 3.12",
"product": {
"name": "Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:quay:3.12::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Quay"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3Ae82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1769852013"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1769466677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1769810112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3A47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1769812327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1769811895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1769718571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1769000026"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769852013"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-bundle@sha256%3Ad6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769802588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769466677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-bundle@sha256%3Aedc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769810760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3Acc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769810112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3Acd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769812327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3Af2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769811895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769718571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-bundle@sha256%3A6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769855900"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3Af5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769000026"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769852013"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769466677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769810112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3Aed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769812327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769811895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769718571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1769000026"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1769466677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3Ae8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1769810112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3Aa1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1769812327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1769811895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1769718571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3Af2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1769000026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3Af58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1769852013"
}
}
}
],
"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:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
}
]
},
"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.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
]
}
],
"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.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
]
}
],
"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.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
]
}
],
"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.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
]
}
],
"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.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_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 Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_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 Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_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 Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"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.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_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 Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_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-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.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_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 Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_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 Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_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 Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_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 Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_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 Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
]
}
],
"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.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
]
}
],
"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.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_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-02T15:52:56+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:056dc564e4f8ee5ee816c008b962ca6e2de3b3e86c60fd2805654b6054948caa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:24eeadd822f6f30c5e587e9d3eba06f1856a2c2e9f47daf4bad706146f50382a_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:338cd06dcc742eb7f37b3ca02ff6c5902630e1466ce3dc6b73b49c1b2b8562fa_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:92e8d6d910fa92fb05e4e0a8046b03090643509fe2a67f8efc8e1bb2b93aba10_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:edc72269317914b4612ffe859a558a886b5a244d99c016896b126f1dd35fb299_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:11c27678e7d181621669548757d07cc9ed5be4e55043d4676fd4a2fb41433498_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:1f9c64d9e2b9c6c1ae2fc5d00c83498a9bb8db3a0cf5fd3545a49cce65a998ef_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:cc4a64957a3e97ee564e895c50d451dd0cd472ea635a258db2ea3a0bac83e242_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:e8980b92b3c6c5fe6cb076121faba33f0c70bb980e349172c0d3732c52ab8c09_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:47e327e54e2dfd7b990a196e8864262ff2ce94e760caa96a163f44fb51119f18_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:a1f93c08e02b3b2651f50bcdb8297a66a4f8a5221284f30c9a3a65a14784c824_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:cd984016e01cde762b5958b8e7f8ea9f17828348104f074424a3ed14604a2544_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:ed9b563d9a2133239537b37954bbba96ba6e17f9f64d899cfd51688b9bed040a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:3b19f8efe886a379fcad216b583de6c962a231159020f363323d531c330350de_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:53c55f81a10b84f6c7756a98c30f6c018736d8691440408ded75a9d60d20abd7_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:907981736598e7544bebfc8d174fea92cc9a7769d649cbe8ce3cc296e6953856_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:f2f9b7f06fe1847d49a1d94069e1052b021f2169fb036f2b886f2f70859914de_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:d6728285a5552f62e96c93eb5b0eba181582890c4fce1a0b56758d2b3c4bbdcd_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:39a26364fc2794512c6862fd0333df158d8301ca82eabf53959561fc39fbbe0f_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:412a23db39debcda082d6d85807a7983aa474e3eea8f6780c619d0b371af16ae_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5e8ae98348f50d6a50ff31a3b099afb84109ea0892b9408d16f6f32b0b657048_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:63e2f0159c3521ea5d908f331979836af72c32f18104bcf915feab123e294dd1_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:6e048b97ef55a2ad081250608152c08613075713d9b10d7558becfb19ded8e45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:19951763d79334b5e566c8d9b5acf9524268d1e5864a574632363cf540678184_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:86224e8f5d9f5ede57e90166cde9802c1ef956737b711935b9269b387ea5b68b_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f2c4a003335692f84e68cb660d61581a68c89607ec92fca9ca08a7e98efc8c63_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:f5050789c44ce9c4de52aa34acf375efe97708a313280e395e34a6d306e5d1e0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:03a485b1c02f5155f22c7820c166889b3f7d7b479892bb4d106432fa2dbf217b_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:117876c6c6a12beb25983da60c8c1628f350a1797888b9f03c44b9dd737844fa_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e82aac09336b0a36d5bc896826891ec41714ea1e05aac345a49abc4915b255ee_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:f58b0c52270707e15747b431520150641019c9b215e864c8dfe8dec1f6e94caf_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)"
}
]
}
RHSA-2026:17469
Vulnerability from csaf_redhat - Published: 2026-05-20 08:31 - Updated: 2026-06-11 09:49A 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.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_ppc64le | — |
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.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20.23 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.20.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.20.23. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:17468\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* lodash: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)\n* immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution (CVE-2026-29063)\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* @remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\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.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"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:17469",
"url": "https://access.redhat.com/errata/RHSA-2026:17469"
},
{
"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-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-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_17469.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.20.23 security and extras update",
"tracking": {
"current_release_date": "2026-06-11T09:49:15+00:00",
"generator": {
"date": "2026-06-11T09:49:15+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.8.2"
}
},
"id": "RHSA-2026:17469",
"initial_release_date": "2026-05-20T08:31:01+00:00",
"revision_history": [
{
"date": "2026-05-20T08:31:01+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-20T08:31:35+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-11T09:49:15+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.20",
"product": {
"name": "Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Ab2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778522444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Adbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3A968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3A9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778547051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Aa7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629408"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Ad48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Aeadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Aa6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778502830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778645008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778522102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Afe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Aa410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Affe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778643713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3Ab7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3Af37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Ad03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3A988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778530965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ad603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Aa34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Af09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778502791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Afbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Aabef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138809"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Abbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778522444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Ad4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629408"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Af1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Ac0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778502830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Aeb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ab0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778645008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778522102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Aad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ad06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778643713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3Ab4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Aeb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Aaa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Ad4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3Ac65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778530965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ae172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Ab9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Aba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778502791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3Af8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Ae5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Ac8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138809"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Aa8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Aa558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778522444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778502830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Aaa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Aae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3A5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629388"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3A8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778547051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629408"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Acbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Aca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778645008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Ab9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778522102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778643713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3Ad3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Aeb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Ab09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3A92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778530965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Aad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Aea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778502791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Ae478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138809"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ab6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778522444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Aa602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Af44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629408"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Ad3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ad5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Aad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ad5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778645008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778522102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778629461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Aa6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ac4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Aeccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778643713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Aed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139391"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Af37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778140587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778539339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"product_id": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-support-log-gather-rhel9-operator@sha256%3Ab83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778530965"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778139501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778138809"
}
}
}
],
"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:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
}
]
},
"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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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-05-20T08:31:01+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.20/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:17469"
},
{
"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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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-05-20T08:31:01+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.20/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:17469"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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-05-20T08:31:01+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.20/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:17469"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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-05-20T08:31:01+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.20/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:17469"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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-05-20T08:31:01+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.20/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:17469"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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-05-20T08:31:01+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.20/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:17469"
},
{
"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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_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.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3f8426a334d0765c1eb1924d6a6cbf253dda2cebfc0b1cce206b8b275b42c0fd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:76afd066ad028896c92283635f28dbd12566b40d8de159d5990cfd3d6e459f7d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d5a1a1a67f49401d36a8b878d373eff59a6c7543acfeec046d7fb58369ab9ca9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:eadf36bf654b7485bb3307fdbf31b99bc3247ff877eaffa180502d6c38659d8b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:cbd3f992576bfada0634440140672211b2ab45251a734a055ba705854607df4e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d3a470079fabed9427c397a6a3ac99b479c4e166b2d7309cd3d167a863506a06_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:d48f90b886ed41ab1d265e29f7eb54ede7b4afcfab9840ccf4bf2118eeb67480_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:f1fd2ea42071ce0fb251fcfa607a0f9d666f6fb1f4f2d719c7fb2e2cff9e6c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:21100ce4e1debcb748fa4a11950e681d05858daa45bd58822cbc3943aea29ee5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:3f54dbf194c3b4e7aa57325696220171ad9cf6bad9d063afd135f3caf0c15d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:a6d4614886b85925292d67af4a90d1c477f6f6295dbf2bb969463df22c93ebdf_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ca7a069448d2881c1699d8fe230c43c0ee46be185deb15f9b17b211b3e03eb2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:30ba2a372e0e34dd0fa2733c8e38caa296f178b5fe8867f44917b159d4a7f07d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:8ba07af9117eb0392bb40f67ccc314cb572d8500a98b558dd873393ff69d9cd0_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:eccc86cd2594da5b50991799fac8f2fc977e7b83f3c3f4ea82b788cebd6f4891_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:ffe901156f1184a6fd300104fb9ad6074ebf60ec9c97cd7f64d471bd8c6c946d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:01e9bb5b71fd054609fa1acddf226840583a0a81c86e580d24235542f2bdffa7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:328cc2536dfbbd7f378f012a15b3bf0efe516c6c20804a044f49ef05164bdf62_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:37a948bc89ef8a8801db9c1e669a026aa336aef5ff80ec96382c469cd1b3ec9f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:eb9d0dc8c90d29b76d88ae0f92bee314924eaed2f229989e3f940817dd9b58ba_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:2fb899d58b5fb8e02389f944302ddadf742cc2f43d70eac2b708f763e508d4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:9efdc4cbffa23e79f8a97c48ba139bfb6a3bf2f43d17009379036ae77d986652_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:eb8f314d56ac188d2a4e6aa6d7f3603c292da4a26429277f4959b5ff1891c306_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/metallb-rhel9@sha256:ed258a6bf35eb4e902dd4e887cd0a11eeaaba789e113b924d3a924f150d4c15b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:629a77765341fd6396219d2d960587e3ac14bbe329598cf62b2319a90bdb5577_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:7330fed163d93521df33c3066c42a40e796fbf721dcb34c21a2db73aa8782e2b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:b0cd6e7f86f22e68d701fb018c6bc93e3911e2ec3e96896735d75a472b032b49_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d5eea051cbf7b2c43eedc9157b04e6687db296f515550dc5a6c2ed8cfd12bde8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:12a31fa39afb16f689f44eb59b63adee1aba7202a076261e93e0af6e125f5c98_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:1660fbccd240d3272d0b20ef57334e455b7ffbcfd665bf2b6026e42ebd98e744_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:786f20b75ca82c004882a0bb733b2bba412ae1b36607efb742131d1b34fc0c99_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:fe96a7296259ac9949ef6281cda32e3713802ff336bf663336e3ee492ad419e5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:742666669c49c58b7fe1a3ab896ded9a01bbd152d3e1250a80c2d9bd9d7df3a0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:978ad806a81fe43b15541e0e50401347a7c317c3d71a8514a55672d1177fba8e_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:b7d07f2f679f34f4c1d08f0b708db4fc7e795d5a71e8c38b1dac06250cf3ed3b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d3f94ea0af192623f652bbb4215f5a2346852973876c2c81af53b997f569867c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:6ba38b0eb29e200b854b1933e0baaad38f2d1274fe28a89d1e2f2c1b06b32e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a8fddd5d6fd3831424d4b129254780d2906d7c74c07178b172b1e4363dc10696_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b2f71b751011d6768d8748124af887e79f87529b83d64386dd2fb5827b3f3eab_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2e95e8207853b3c5d16b6ce78b315017fdc583faecd86f20f9a8f24e6ce32848_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:3631e5bb8bbb289d46d6dd1a7e771ac7ab0d2e4b430e75706213a2996c8b1465_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:a6032cddd7579f3c8aaed55e84e1ff27660e22ff24404ffc48447b52c908e4d3_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:ad3cf2d0ba55c487ba385b0b9af9f1a15936179ba4aac969332f028899751824_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:97a306dd6504ace04b5e97e23c20e00ca8530db3d8f22c65a379f8022db8c486_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:a558c9e615b535ed188da8721ce16a5239b128eda9e6c1c2a110e3e3daca2a02_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b6b6768e607feeb03d4b94a8fe788a9f10d86caea84c0455ce41492965dd51b6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:bbccab6e0154afa7b6a0eb3c839705c8c29bf77218a004b3d776e4f61b68cc95_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0b193198e395642917c9be7d61620287046ab5d65421c48b2c7eab3dc0edef4c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2c04dfb6f779db2021f0f23c7512ef8d2020e06648c2cb290c14c32c3ceb163b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:8be65ea23faedd65d84f7d9c3f48346ba3a6a01ca88a247bd9d41f976f73cf31_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:f44370b4b913a72587ca1435c7e92cf7723adc4f47f93de40b35f03bdeea6bed_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:5e3fa710d52ee34b78edf3dc52a50df40a8870ca74d7a12fbef4d05abe4801bb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:92f8e8024453d7c7d0d1d639bbd4947cfdf18ef757639fa181f960fa6510b053_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a602adf0d5040e30a85e00de8dfbf27ba1a52f90c8fc681206285dbe2beb567c_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:aa0dbf9c38815fc16a6d2df9594b92a28bcc7d523ef0cd3512e281613923a579_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:089460d1fe406b7e9545603c1407e7177a3e10b911093ae3e18e88102c00678f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:42ede0c28b5fd700e74027c1d61040d6f0ac6b8d20d6640c28b5baa2b28e5f0e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:7cfdb3836d583c4481af75f77f9f96c44231b48117498d35e12449b611e3d409_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:ae658eb862e63fc5629ea7d96e88c718b361337a6b6b911ef99932efca2caadc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8af977e1c540737ff1612d3bd2c0e8e217528780eb4ce71b616a91b2e21f0d10_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8e6247ec61e5313a030e3228f0d9508efe2e5902f1da9fa9531df958787c4b60_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:95f2f0fde0dd12502b6d7088e03a823d67a4921326c03a85825868f0935165d8_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:dbe2bfafe0cce506c99f2cb0b93a8b239639dffd954fab897a9dd13d4fac0b9e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:5d31419d1822fc28c48545d05b19f0437c3a17b304d79b55ff5c01fd9729e072_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:968123d122114c56a68745881cf9ec5af876aa6bdfe399efe23628594ed5cc2b_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:8ac9a717e5eab0ea1f4611f0f115a3a9fb8d2c77822c35f86ab90dba0dda99f3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:9f38dba135465787040754998d4eb93c99eb64b20c3583146d254f7cd2099cf5_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:56733a925a4b2f6e1734b2ed9d919a749b6df85000100b3579db9810d791a6f4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:908d12506764f12c02ff682797ca29d096db3c6becd5f58f791eb66582e350c1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:a7b1fbf3bc72bc92e494f80b25bb42d822084f5d674e423462a037df901a159f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d4fa98db4757cd35983cfd7517d55c4c0a8298a1b63304cf5eee2250f54a93af_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:70ca7b72a63039cec854024333b73cb9cca3a908062a4fc8bbaba051c4b666a2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:b4a1b82cfd424f360ef3ce3d58e7f2927f8139f674d5b96a74af75d5d473bdd6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:f37ef89055611c2bebcb219a641554cc9f1a172d170a0a692f084d8e64c8161c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:193512805231518a1bdb9ea9555e61e2258c660f0ad9d0fbb3820429b4e177c7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1981a973f9c940cafe594061f9c294c569eb129882fbdbed64013f566e66bf67_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:82022a77d130d31aaf25bbfcd32ab7bf79b4cff5ea5ddda4dfada071eaceb094_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:14dce69fadf83819bb17775c91c5715846eff91c78b0b1c8a4ff6a7353424846_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:2fc729ee19642b643b03aa87f245706c2e8e0ac5fd96a9257ce64b8168ac1ebf_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9de91edfc14f8c17a985a74f85e1af7218dfb301d23e7922761cd4505d64b286_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:9f870fb811da90bf200bc29658b71e995844b458baecdc13c833f2e9515e5634_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:859678939f4cc086df2595b2029736efcadda232b847e37037bb88909d1f2c6d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a410dc3dc48e88de3ad0dfe7a8cd3326e3a5d5a693441f22a7c64be7b0a5c3e0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:c4ce020a9dccd4754026d50eb8c2bf5ee67f5f148473b9ff978074444247fc6e_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:d06152c99fb9be238f9c17cb17bbe6ecc61330983a3a420a2ec37cde468f1e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:38bf797a0f1f0e1813bb0384f9b91ee49217bfdba024eed3ebe7b065cb946111_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:40e68a490bc0d98dcaf1e5c55cce80e4467472b5bfa44faac7dd8951930236a6_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4c688bb0d0f6d2bc4364388be9c0096e664b0e1e3bc7c8da9c8c3041bbd3554f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6b680aeed14d2a6c3272fcb9beffec68ad494a9a2845cef84729dca036209a00_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:41fde9c5ad878e76d07e9b6bae964dff67dd347de8d5fbf9a80be09fcccd2534_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:72e378d8ba766ce79c309c1c0538b37b8567157d3a02bdf837a624aa9f60a105_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82909d3f808f228626e7f9d3d61d83d1df7d183d455924bac6f2a807fdf76e68_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:972c053f984bb0ba6a190d76284325681932d7b9d712c047f28c2bfd66194a55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:153ab64ac9fa7e85ad5dd36e31186afca6f909441262ce1130a985cadac3490c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:547853bea12e339dca06bf4aaa7073c7825ffb95b4e04fb92caefa4f07ff5d3e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:ad5bca97781cbe3f05c6740b7462c069f1d33fb34817001cceca10932e3e5467_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:eb013796e79cc6df6a72ac5a4b50ed1194e40f79e65774d6eddc433f62cf8d32_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:2ca3741076a4ce9243296514025bd02a3b837e9f7eae8c1e05f84c8e20d0bd66_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42071f4529647186ff13305000b99a9926dc44aa0100172b9a8411d27ca1f959_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:76a1e8494cb3ac83de8da75a9b58add17caa48729e27a416c9dbb06f8bbda574_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b9f56adeb2c6bdda0d9754a5ee69378a0e43b991345f39d855ad4b4c20998a17_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ba98a0468e78d532fafbd354f76569d04f61da6e19a72f2752c26bcf59ebe6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ea4db86495d36ac23b4eeabedba63520c63c5b7b6223f4353c0eb5774c686949_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f09e0063ec820963f79a4b5b54c63c924fbd37bb39643a4b4811657795047353_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3d38d9c32f028a95bb8f919337f015a168d557ffb6f50d90183ff14a73597888_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:6972a094ca65ac3325c8eb3fc51f73f5f9066f7dbeffc7046cd439707dd0e656_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:c0c3461119e180dd6b608303bcba98102c73a8a9b149d5effa9fd0de9c5b6ee2_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:2a06c0f7d876a5338f4f953d35fc55951f1db03e8d92c06022f8c555b3322d05_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:8104b1bdeafd4726a246cedd8a5b3aa89dbdd72de953165e8b53c5f35b29e42a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:83bb599805e096b09a9e55c6c9b2548079eb19f26db96914fb47783a461ad9a6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:f37f6e8fefc990f24da3a83114aa02eb0693c248888f607b3b23c3a52577fd73_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:2a19e259e41a612dbf16c65257a26949cf5222361fac418198506fe2e17c1182_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:34bc2e072dc2c57e8720709991edfd8f03eae39fb392f599bb4fc21cec461c05_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:564907d61c1930ded3ccc79799570f86ec45bbd39197b09f07a7e0adf18116d9_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:779c341580a439146ac9a2e4f32c3f979edfe9efcec979b894e55c967cc730d8_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6abb762161d2b22ae22ea99a5319b8a76358b18a573b133af067bc1eda3aef87_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:6c354d0ddd28818aac92de5c321c20bb56c584e86ec0eaf4a935ed10023d9249_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:8f2277a9fae27e9c75d62f5b469b6db85303b62ec0902d860529aa64d34ef1c8_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b09ffc6e9f96b031dc31a2a9d5231f48e24bf04e0c809fb8307859ed467666a1_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5a200ebb868d5d9658fd42d3b4a3ef2ece7258aae0c4d8a9daf7009fc511d6fc_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:73a95f52c3f940d40d1e44cfe6c46ff0a64d1a415668586396e5e15e8ceef916_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:74e0ae5ecabc38cf84422e085b6eff5828520afd2263c652b1805386e27a9627_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:77e4ed9977d27579fc6b03decfed1c578cebc4a96a66769a258aa6f97e8e735b_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:09a28451cf6553b0d2b69c617c8302fc0dd0393db385679ad60ca52c89521c83_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:5a6da3b1cbf5b65273642fb203668ed682f6ad532786d0ef9354affa4b23ad65_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:85001478624e71b173c2124fcba4642b6a4c9e237c3d4c81ee511dbea4eead8f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:aa194671af3227d6953d7b9b771943eb7d68d619b36a024c35f1e53ba546c82b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:701744c9b4cffa8ded99bdf1a755737e44be441fe405f6208604326a5fd877eb_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:e478883fb071cdc639cf25d6099138a9326be2325f95a21efc670e3e83ea6690_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fbd687fbbbf442eb1bddf4414724c75f800537dd39b5120ed5164c4f099a2076_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:0f7ce316120554785a3653d3ee92f9f44d1a7f68b6f867d7fb8b7b1e8a5fd437_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:51c4fea877aee48b8c9b0601f408204e0d21fc4d07fbea9d075a8ec4596d290f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:89ad3f25774677e8200a488b3e270ad952a624470f94007f0f66c2aca6d78e04_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0d6f987ac866c4c59032f486f54c39c179e0c09ffe7822164b7e1ab51ec73d00_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:250de665ddff6b3a05577dcfc7705f56b29fbe1ed747d6e3ad84172b001b7711_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:f8beee0ee97b02c0189ee4790ba8a08c6083d0925608f25c73d28d1ae0aac6ef_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2534e6c09b6a3204ad1bfa87308768c7107f34fc27ada615b07cabb620c7538f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2e4fa6ee32b69b91a01fe46bd471ad1207c5edd8bb41e92c83ca168d5a8ea86f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:e5e050b284e1a790095874d96b74649c2b8f00bf42e4944d971a75b04de06fad_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:27edb96d7ed4d86ad221b98423e33c9012a7f509601ea02111d3777ecf7fcde5_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d03e1ef719b1dbe1363e7b2552097cf0520329bc8b4667228395b3103462b94f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:d4483af86e23425d78ed0f8e9f4dcba386ccff462e5fa1544106a01c7e428d35_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:0660ae962cd4044d2a7be1f2ecf8f9e21857ab5940d1f091c40326c721102d7a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:810913c5e77fb971ca9b8488109236d14e99cf287f27e3404ab5708083a90d28_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:c8901ca5c5400dc88ec34f1540f3d5602977682195b988ee4abb07a4e35dde80_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:749b83eb7157ed726f936d5dc38c9866e1267870098b3cd94a34d8539eeff8d6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:7944536daf3f43e1010704740b86bd3a1e8f1bd3508807ab5ab2fac41cc2a908_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:86027c1af5f9fb9af70d65e21acb25672a9dfefe2392ffb069c22317c8c85c25_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:1865581853645e9284add7786b296d9cd8fadc5a634fed6cbf17d166336a6436_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:2fd06b4150c88181501fc7a42e9881a55193ddd44c4c84a2f429ced985cee65f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:639f810d8bee812c01c243e6973b5fb6f7d28e39a688c8b2930dd7315fbbb4fa_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:92203d6369e1a60c5eb97df3ab502048bb3849a340524dd78fcde14c1683c236_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:988bf4e14aff7d526afc4ef6999d52e65f50812b0099f0a45939bb9f2e8ce551_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:b83374890e1535753850c2a21b2b6333c6aed63934dc70818a1e10eb091eff84_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-support-log-gather-rhel9-operator@sha256:c65d72f8203b24a36b7d54d25f0a4d4d04d96e9672136e34c1e355e0f70ce2ff_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:30a85afb675d30505f4255aa2e20beafb76c5edf9cb5202dfa78c80d1e00eb5d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:5b00c3b10e64521beeaf69331be76f25fe9e141c23934f7222f49e0c4fce1fcb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:6f6f5e7e2dbd5e429f0d51fb911bb8a6bcc32e22c751e159f73c28a9f47575cd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:abef133020682913ef30ab3029575aea99a58e76fbd91f5d0b9baa1f72ca8b5c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:227695a85ca226890cc02f71dad86be9cd2870baf641fa1b30565595d3a64b85_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:2556884e910d76b36ff85001969cce0f0a748ec4c08707470c7304cd792ec7dc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:346c870162e60154da8609e526c7d0f926362d712371690b64ecefd6b5f631a3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:45a38888273a181568253b15e6c5cce8142ada340ea6f098c2a79a7f2fca2ffb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1a374510dc7f09f4b0ca54eca7aefa854c52fd13efbd14e0a4ba552fc2f8e972_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:a34aff5a142ee22777f7e50a4b4b1b008b368ff34f71e3a2ce3e407a9cec5125_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ad80289d865ac3f48d716aa33bdb65c37bf7d9744716a473c6ae4f54bfbd6ee8_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:b9e4c3c4a61d36ebbd734eb0722e023bfbf07a36e87a38fce85fad5ea2c08b55_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:03414c96ac5b7ae366a3e0262539671ec400f1965c182d1b8c4f720913ae83c5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6511662ae3e9e09785d7c93480734a483ac26a573593d229d4c495fe0ac5cec6_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d603890a4c43ba67175affc01171d130f3eeb50b365a5da964024346cb3fef51_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:e172805a90813999e2937b9daeca9298f36ede066bf92057dacf95821922cfb3_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1bfaf1f8e3fe6c76bca711baafe3a12a1c0ab08ab2f8178cea4256ad0d9e2a63_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:3cd5000dc5d696ea44fe39afaa379b5496c0adfde61eed513867c846ab04c89d_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:9d3d29bae2457efa855cbe90468bf8c9aafe4513e9e8687ae6017495be757888_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:0b2caa1ad7ec423f68045347ded1a96781cab449932c739635140e173caf331a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2dfbdb92a5d25d5af13ebd452460e9a6432d279c9250d9197a0fbef095b12f78_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:73bbcad39361c318861fff0fbdefac5fe146c16acb2cf8c1afc8c3e9fe560fa6_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.